python 第三方库 工具
生活随笔
收集整理的這篇文章主要介紹了
python 第三方库 工具
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.tqdm 進度條
from tqdm import tqdmfor i in tqdm(range(10000)):pass2.fire 自動創建命令行接口(command line interfaces)
a.單個函數?
import fire def hello():print("hello world!")if __name__ == '__main__':fire.Fire()b.多個函數? python hello.py hello1 "beijing"
#hello.pyimport fire def hello1(place):print("hello world1! I'm in"+place) def hello2(name): print("hello world2!"+name) if __name__ == '__main__': fire.Fire()
轉載于:https://www.cnblogs.com/alilliam/p/10490157.html
總結
以上是生活随笔為你收集整理的python 第三方库 工具的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CYJian的新春虐题赛
- 下一篇: 前端项目编程规范