pretxt0 = ('oa', 'ob', 'oc', 'od', 'oe', 'of', 'og', 'oh', 'oi', 'oj', 'ok', 'ol', 'om', 'on', 'o...
Ubuntu切换python版本查看系统已安装的python版本ls /usr/bin/python*配置可切换版本update-alternatives --install /usr/bin/...
print输出多个变量时不要空格a = "Hello"
b = "World"
print (a,b) //输出 Hello World
print(a...
使用request循环调用某一页面或者api时,若遇到请求超时会跳出循环停止运行,因此使用try/except来处理超时问题:import urllib.request,re,time
url ...