Python基础¶
- class 的实例方法、类方法和静态方法
数据与数据类型¶
基本数据结构¶
基本控制流¶
常用语法糖¶
FAQ¶
- 明明格式没有问题,但是
json读取的时候却出错
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
可能的原因是数据传输过程中出错,可以重新下载一下数据
Ellipsis¶
pip¶
安装本地包
pip install -e .
安装 extra_requires
pip install -e .[test,dev,...]
pip install Somapackage[test,dev,...]