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 这
阅读全文
摘要:startapp时出现 CommandError: 'xxxxx' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.错误 原
阅读全文
摘要:通过pycharm新建app时,需要指定目录。因为manage.py和APP是在同一级目录下,不指定目录的话,新建的app会和APP在同一级。 1.首先先在APP目录下,新建一个和要建的app同名的文件夹,比如goods,删除多余的__init__.py文件,不然在创建的时候会缺少migration
阅读全文