Python 파일입출력 예제
import sys print(1) print('hello',' ','hello') # sep 파라미터 x =0.2 s='hello' print(str(x)+' ',s) print(x,s,sep=' ') # 기본적인 print() print(sep=' ',end='\n') # file 파라미터를 지정 print('hello world',file=sys.stdout) print('error: hello wold',file=sys.stderr) # file 출력 f=open('hello.txt','w') print( type(f) ) print('hello world',file=f) f.close() # 참고 sys.stdout.write('Heloo wORld?~') #textmode 가 default :..
2019. 6. 17.