Jupyter notebook 을 사용 할 때 for 문이 얼마나 진행 되었는지 눈으로 확인 하기쥬피터 노트북을 사용 할 때 for 문이 얼마나 진행 되었는지 눈으로 확인이
필요 할 때가 많죠? 그럴 때 tqdm 을 쓰시면 됩니다.
# 1. tqdm 선언 (없으면 설치)
from tqdm import tqdm_notebook, tqdm
# 기본 형
list_a = ['a', 'b', 'c', 'd', 'e']
for li in tqdm_notebook(list_a):
print(li)
# 함수 안에서 tqdm 사용하기
def def_a(items, tqdm=None, **tqdm_params):
list_data = list()
if tqdm:
items = tqdm(items, **tqdm_params)
for item in items:
list_data.append(item)
return list_data
list_return = def_a(list_a, tqdm = tqdm_notebook)
'개발 > Python' 카테고리의 다른 글
python multiple file upload 파이썬 파일 다중 업로드 (0) | 2020.03.10 |
---|---|
python 죽은 프로그램 다시 실행 시키는 os.execl 사용법 (0) | 2020.02.27 |
파이썬 No module named 'PyQt5.QtWebEngineWidgets' 해결 방법 (0) | 2019.11.29 |
windows 환경에서 python 파이썬 설치된 경로 찾기 (0) | 2019.11.21 |
python 으로 카지노 룰렛 number / color bet 베팅금액 별 승리 확률 구하기 (0) | 2019.11.20 |