Python 零基础新手入门 #09 Module (模组)

1.模块
import my_module
import my_module as hi
from my_module import function
2.random
random.shuffle() 列表乱序
a = random.choice() 选其中一个
a = random.randint() 随机数
3.string
string.digits 数字
string.ascii_letters 字母
4.实例
通过requests请求某地区天气
1.pip install requests
2.reCAPTCHA 大陆注册显示这个错误 试试采用高德API
3.参考资料
https://lbs.amap.com/api/webservice/guide/api/weatherinfo
https://blog.csdn.net/ssjdoudou/article/details/84559003