python 第三方库 工具
生活随笔
收集整理的這篇文章主要介紹了
python 第三方库 工具
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.tqdm 進(jìn)度條
from tqdm import tqdmfor i in tqdm(range(10000)):pass2.fire 自動(dòng)創(chuàng)建命令行接口(command line interfaces)
a.單個(gè)函數(shù)?
import fire def hello():print("hello world!")if __name__ == '__main__':fire.Fire()b.多個(gè)函數(shù)? 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()
轉(zhuǎn)載于:https://www.cnblogs.com/alilliam/p/10490157.html
總結(jié)
以上是生活随笔為你收集整理的python 第三方库 工具的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CYJian的新春虐题赛
- 下一篇: python学习笔记(二)python基