Python 零基礎(chǔ)新手入門 #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() 隨機(jī)數(shù)
3.string
string.digits 數(shù)字
string.ascii_letters 字母
4.實(shí)例
通過requests請求某地區(qū)天氣
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
標(biāo)簽: