from time import sleep
for i in range(100):
sleep(0.05)
print( str(i) + '/100 percent processed..',end='\r', flush=True)
python 3.3이상에서.
반응형
'Programming > python' 카테고리의 다른 글
[python] dataframe 의 column 순서변경 (0) | 2020.02.13 |
---|---|
python 주석 (0) | 2020.01.17 |
python, property decorator 을 이용한 get/set 구현 (0) | 2019.09.09 |
python, networkx, 에서 graph의 layout 종류 (0) | 2019.09.05 |
python, print 시 문자열, 숫자, 자리수 조절하기 (0) | 2019.08.29 |