Python的time庫和文本進度條 大發彩_票平臺搭建
阿新 • • 發佈:2018-07-14
格式 err 類函數 格式化 per .com 開始 range star 大發彩_票平臺搭建
for i in range(scale+1):
a = ‘‘ i
b = ‘.‘ (scale - i)
c = (i/scale)100
dur = time.perf_counter() - start
print("\r{:^3.0f}%[{}->{}]{:.2f}s".format(c,a,b,dur),end=‘‘)
time.sleep(0.1)
print("\n"+"執行結束".center(scale//2,‘-‘))
地址一:【hubawl.com】狐霸源碼論壇
地址二:【bbscherry.com】
是Python中處理時間的標準庫
1、time庫包括三類函數
時間獲取:time() ctime() gmtime()
時間格式化:strftime() strptime()
程序計時:sleep(), perf_counter()
2、時間獲取
3、時間格式化
4、程序計時
5、進度條實例
#textProBarV1.py
import time
scale = 50
print("執行開始".center(scale//2,"-"))
start = time.perf_counter()
a = ‘‘ i
b = ‘.‘ (scale - i)
c = (i/scale)100
dur = time.perf_counter() - start
print("\r{:^3.0f}%[{}->{}]{:.2f}s".format(c,a,b,dur),end=‘‘)
time.sleep(0.1)
print("\n"+"執行結束".center(scale//2,‘-‘))
Python的time庫和文本進度條 大發彩_票平臺搭建