[Python] for문(반복문) 진행상황 표시 :: tqdm / tqdm_notebook
반응형
반복문이 어디까지 진행되었는지 알고싶다면 tqdm을 사용하면 된다.
우선 tqdm 패키지를 설치해준다.
# 패키지 설치하기
# pip
pip install tqdm
# conda
conda install -c conda-forge tqdm
tqdm을 실행했을 때 No module named 'tqdm' 에러가 나타나면 패키지를 설치하면 된다.
tqdm_notebook
from tqdm import tqdm_notebook
for i in tqdm_notebook(range(10000)):
print(i)
쥬피터 노트북에서 tqdm_notebook을 사용하면 진행상황이 원활하게 나타난다.
사용방법은 간단하다. for문에서 range의 바깥에 tqdm_notebook을 추가해주면 된다.
자신의 for문(반복)이 얼마나 진행되었는지 막대바로 알 수 있어서 좋다.
728x90
'Python' 카테고리의 다른 글
[Python] 리스트 정렬하기 :: sort / sorted (0) | 2021.02.10 |
---|---|
[Python] 영문 > 한글 키보드 입력 변환하기 :: 자모결합 / 자소결합 (0) | 2021.01.29 |
[Python] has no attribute 'compat' (most likely due to a circular import) 오류 (0) | 2020.10.05 |
pd.read_table 예제 (0) | 2020.03.31 |
[Python] 위경도 거리 구하기 :: haversine (1) | 2020.01.28 |
Comments