03 ---- Python 中 Time 库的使用、

Tiem 库是Python中处理时间的标准库,当然Python 中含有丰富的第三方库,今天我了解到了 Python 中的 Time 库 的使用 我们可以使用time库来获取系统的时间。

我们 可以在程序中 使用 import <库名>  来导入 time 库 有点儿像 C/C++ 中的 include 一样

Time 库提供了三种获取系统时间的方式  time()  得到系统的时间戳是一个浮点数、 ctime()  返回系统时间 返回格式为人易读的格式  gmtime() 返回系统时间返回格式为字符串形式 一般在程序中使用可直接获取当前时间的字符串形式  如:


time()  ctime()  gmtime()

.............



#进度条实例

import time

def Fast_Wavy(x):

    inder = pow(x+(1-x)/2,8)

    return inder

scale = 50

print(" 执行开始 ".center(scale//2,'-'))

start = time.perf_counter()

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("  Over  ")

你可能感兴趣的:(03 ---- Python 中 Time 库的使用、)