Python笔记
1、各种库
2、折线图——可运行
import matplotlib.pyplot as plt
input_values = [1, 2, 3, 4, 5]
squares = [1, 4, 9, 16, 25]
plt.plot(input_values, squares, linewidth=5)
plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
plt.tick_params(axis='both', labelsize=12)
plt.show()
3、
import matplotlib.pyplot as plt
from matplotlib import pyplot
python 3
1. [ ] Python 3.8.0
2. [ ] PyCharm 2019.3.1 (Community Edition)
1、pip下载速度慢的问题:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple XXX
例如pip安装PyQt5库:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5
2、PyCharm external tools设置:
QTDesigner:按以下配置可以右键.ui文件选择QTDesigner,直接在QTDesigner中打开.ui文件。
> Program 选择 designer.exe的位置
> Arguments 选择 $FileName$
> Workingdirectory 选择 $FileDir$
PyUIC:按以下配置可以右键.ui文件选择PyUIC,直接在同位置生成.py文件。
> Program 选择 pyuic5.exe的位置
> Arguments 选择 $FileDir$\$FileName$ -o $FileNameWithoutExtension$.py(每个人设置可能不一样)
> Workingdirectory 选择 $ProjectFileDir$