python添加进度条

 

元学习论文总结||小样本学习论文总结

2017-2019年计算机视觉顶会文章收录 AAAI2017-2019 CVPR2017-2019 ECCV2018 ICCV2017-2019 ICLR2017-2019 NIPS2017-2019


使用tqdm 包实现进度条功能

from tqdm import tqdm


class Test():
    def __init__(self, num):
        self.n = num

    def test(self):
        a = 1
        for i in tqdm(range(self.n)):  # 在for添加tqdm即可
            a = a + i


Test(10000).test()

结果如所示:

你可能感兴趣的:(python)