파이썬에서 print로 출력할 때, 줄바꿈 없이 print 내용이 업데이트하는 방법이다.
출처는 역시 스택오버플로우~!
t's called the carriage return, or \r
Use
print i/len(some_list)*100," percent complete \r",
The comma prevents print from adding a newline. (and the spaces will keep the line clear from prior output)
Also, don't forget to terminate with a print ""
to get at least a finalizing newline!
http://stackoverflow.com/questions/3419984/print-to-the-same-line-and-not-a-new-line-in-python
'Study > Computer' 카테고리의 다른 글
py2exe로 pyQT4 코드 exe로 만들기 (0) | 2014.03.13 |
---|---|
sqlite3에서 fts3 사용할 때 not operator 사용법 (0) | 2014.02.26 |
python에서 list를 column형태로 출력하기. (0) | 2013.10.15 |
networkx에서 gexf 사용하기 (0) | 2013.10.15 |
MS Word가 갑자기 비정상적으로 종료될 때 (0) | 2013.10.01 |