sys.stdout을 이용하여 txt 형태로 저장할 수 있습니다.
import sys sys.stdout = open('stdout.txt', 'w') for i in range(10): print(i) sys.stdout.close()