from tqdm import tqdm_notebook
for i in tqdm_notebook(range(1,101)):
count=0
for j in range(1000000):
count+=1
print(count)
from tqdm.auto import tqdm
count=0
total=0
for i in tqdm(range(10000)):
count+=1
total+=count
print(" ",end='\r')
print("합계는 "+format(total,',')+" 입니다.")
'컴퓨터 > Python' 카테고리의 다른 글
python pyside2 파이썬클래스 box layout (0) | 2020.10.18 |
---|---|
python ul li 크롤링 input (0) | 2020.10.17 |
python 폴더내 txt파일 합쳐서 xlsx로 저장하기 (0) | 2020.10.13 |
python windows 이용 alert 창 띄우기 (0) | 2020.10.13 |
python 폴더내 파일 모두 지우기 (0) | 2020.10.12 |