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.