摘要: 三种调用父类函数的写法 阅读全文
posted @ 2018-08-16 15:14 运维00001 阅读(82) 评论(0) 推荐(0)
摘要: 1.序列化 python中的列表、字典、元组这些类型是无法直接写入到文本文件中的。 TypeError: write() argument must be str, not dict python的对象无法在其他语言间传递,如JavaScript python对象无法在网络中传输,如requests 阅读全文
posted @ 2018-08-16 14:17 运维00001 阅读(199) 评论(0) 推荐(0)
摘要: 以下图的目录结构为例,说明BASEDIR 1.从from app01 import models说起 在PyCharm中,系统会自动为sys.path添加项目的绝对路径 D:\workspace\dong,所以在执行程序时能够找到models模块 在cmd下,由于没有对sys.path做配置,所以在 阅读全文
posted @ 2018-08-16 12:36 运维00001 阅读(339) 评论(0) 推荐(0)