import xx
导入xx库,使用时需要输入xx.(函数名)
from xx import *
导入xx库的所有函数,使用时直接输入函数名
from xx import y1,y2
导入xx库的有y1、y2函数,使用时直接输入函数名,不能使用其他函数
安装第三方库的准备:
1、安装python
2、安装setuptool(https://blog.csdn.net/u010871448/article/details/96286325)
3、安装pip
4、安装wheel
参考https://www.cnblogs.com/klb561/p/9271322.html



