from tqdm import tqdm nlist = [x for x in range(10)] for n in tqdm(nlist): print(n)
이처럼 진행율이 같이 나옴, 진행율을 나타내는 progress bar는 항상 제일 위에 존재.