摘要:
format功能 格式(填充)对齐,可以格式化任何对象,包括字符串,数值等 #format函数会return字符串结果,但不会打印 # 1. 格式化填充单个对象 print( format(text, '=>20s') ) # ' Hello World' # =:符号填充 # > 内容右对齐, < 阅读全文
摘要:
Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable) tqdm 跨平台的针 对可迭代对象进行封装 实现的进度条显示的python库.(仅对循环的迭代进度及速 阅读全文