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.
Python 기초 str, tuple 등..
import sys print(sys.argv) args = sys.argv[1:] print(args) # 생성 d= {'basketball':5,'baseball':9} print(d,type(d)) # 변경가능 d['valleyball']=6 print(d) # 반복(*) , 연결(+) 지원하지 않는다 # (sequence 형이 아니기 때문에) print(len(d)) # in, not in 가능 : 키만 가능 print('soccer' in d) print('valleyball' in d) # 다양한 dict 객체 생성 방법 # 1. literal d=dict(one=1,two=2,three=3) print(d) # 2. dict() 사용하는 방법 d=dict([('one',1),('two',2)..
2019. 6. 13.