04 2020 档案

摘要:1异常处理 常规办法 try: question = Question.objects.get(pk = question_id) except Question.DoesNotExist: raise Http404("sorry no exist") 新写法 from django.shortc 阅读全文
posted @ 2020-04-22 12:12 spidernyp 阅读(374) 评论(0) 推荐(0)
摘要:在sublime中安装less转css插件 1.在sublime.中安装less2css,提示需要安装lessc 2.在node.js中,npm install lessc -g 3.在sublime中提示需clean-css插件 4.在node.js中,安装less-plugin-clean-cs 阅读全文
posted @ 2020-04-13 10:10 spidernyp 阅读(228) 评论(0) 推荐(0)
摘要:找到site-packages\matplotlib\mpl-data\matplotlibrc中的 font.serif和font.sans-serif前添加“SimHei” 即可正常显示微软雅黑也可以添加其它字体,这样可以一劳永逸的解决中文显示问题,不用在程序中定义font 阅读全文
posted @ 2020-04-01 23:05 spidernyp 阅读(124) 评论(0) 推荐(0)
摘要:最近开始学习matplotlib,在pycharm中安装运行代码后提示 RuntimeError: implement_array_function method already has a docstring 网上找资料,执行了 pip install numpy pip install scip 阅读全文
posted @ 2020-04-01 14:58 spidernyp 阅读(794) 评论(2) 推荐(0)