07 2023 档案

摘要:Python 3.5以下的版本: def add_numbers(a: int, b: int) -> int: return a + b Python 3.5以上的版本: def add_numbers(a, b): # type: (int, int) -> int return a + b 这 阅读全文
posted @ 2023-07-26 06:45 笑而不语心自闲 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-07-19 10:36 笑而不语心自闲 阅读(8) 评论(0) 推荐(0) 编辑
摘要:startapp时出现 CommandError: 'xxxxx' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.错误 原 阅读全文
posted @ 2023-07-13 19:41 笑而不语心自闲 阅读(410) 评论(0) 推荐(0) 编辑
摘要:通过pycharm新建app时,需要指定目录。因为manage.py和APP是在同一级目录下,不指定目录的话,新建的app会和APP在同一级。 1.首先先在APP目录下,新建一个和要建的app同名的文件夹,比如goods,删除多余的__init__.py文件,不然在创建的时候会缺少migration 阅读全文
posted @ 2023-07-02 13:25 笑而不语心自闲 阅读(135) 评论(0) 推荐(0) 编辑