摘要:
一、简介 tarfile 模块提供了创建、打开、读取和写入 tar 文件的函数和类。以下是该模块中常用的一些函数和类: tarfile.open(name, mode='r', fileobj=None, **kwargs):打开一个 tar 文件,返回一个 TarFile 对象。 TarFile. 阅读全文
摘要:
示例一 import time def show_progress(recv_size, total_size): while recv_size < total_size: time.sleep(0.01) recv_size += 10 percent = recv_size / total_s 阅读全文