小小收获for python
摘要:包导入问题: 包之外导入:还是按照sys.path的搜索路径进行模块的导入 包内的导入:python3.0+ 完全区分绝对导入和相对导入 from . import string #在本包内按相对路径搜索string模块 import string #按sys.path的绝对路径搜索string模块
阅读全文
posted @
2016-09-26 21:33
一笙、
阅读(197)
推荐(0)
django 项目的文件说明
摘要:参见官方教程的mysite项目 mysite manage.py db.sqlite3 #数据库文件 mysite #项目文件夹 __init__.py settings.py urls.py views.py wsgi.py polls #APP文件夹 __init__.py admin.py a
阅读全文
posted @
2016-09-09 10:26
一笙、
阅读(335)
推荐(0)
参考文章
摘要:HTTP 状态码大全 (出处: 鱼C论坛) python 调试命令1 2 python pdb官方文档 python decorator gdb调试命令 gcc参数 sublime快捷键 每天一个linux命令: Linux command linux——chmod linux——chown lin
阅读全文
posted @
2016-09-04 10:09
一笙、
阅读(116)
推荐(0)