썸네일 파이썬 - 입력과 출력 ch07. Input & Ouput¶ nomal In [1]: num = 999 print("a", 10, "b" ,num) a 10 b 999 In [2]: num = 999 print("a", 10, "b" ,num, sep="") print("a", 10, "b" ,num, sep="--") a10b999 a--10--b--999 In [3]: print("a", 10, "b" ,num, sep="", end="\t") print("a", 10, "b" ,num, sep="", end="\n") print("a", 10, "b" ,num, sep="" ) a10b999a10b999 a10b999 % 표기¶ print( "_%d%f__" % (변수1,변수2) ) %s(글자) %d(숫자) %f(실수) ..
썸네일 파이썬 For if while 자세히 5장 제어문¶ 5.1 조건에 따라 분기하는 if 문¶ 단일 조건에 따른 분기(if)¶ [5장: 72페이지] In [1]: x = 95 if x >= 90: print("Pass") Pass 단일 조건 및 그 외 조건에 따른 분기(if ~ else)¶ [5장: 73페이지] In [2]: x = 75 if x >= 90: print("Pass") else: print("Fail") Fail 여러 조건에 따른 분기(if ~ elif ~ else)¶ [5장: 75페이지] In [3]: x = 85 if x >= 90: print("Very good") elif (x >= 80) and (x < 90): print("Good") else: print("Bad") Good [5장: 75페이지] In [4]: x =..
썸네일 파이썬 - 변수, 자료구조 lec.01. 변수(Variable)¶ int, float, str, bool(True, False) "+ - * / ** // % " type() or and not 숫자 + 숫자 == 가산(덧셈) In [21]: num1 = 1 num2 = 2 print(num1 + num2) 3 글자 + 글자 == 두 글자 합친다 In [23]: num1 = '가나다' num2 = '라마' print(num1 + num2) 가나다라마 In [24]: num1 = 1.74 num2 = 3.12 print(num1 + num2) 4.86 In [25]: print(1.74 + 3.12) 4.86 In [32]: 1.74 + 3.12 Out[32]: 4.86 In [29]: 1.74 + 3.12 '가나다'+'라마' Ou..
썸네일 Chapter04 조건문, 반복문 조건문¶ In [1]: score = 95 # 97~100A+ # 94~96 A0 # 90~93 A- if (score>=90) and (score=97) and (score=94) and (score=90) and (score=80) and (score
썸네일 Chapter03-6 집합 #Chapter03-6 #집합(set) 특징 #집합(set) 자료형 (순서x, 중복X) #선언 a = set() print(type(a)) b = set([1,2,3,4]) c = set([1,4,5,6]) d = set([1,2,'pen','cap','plate']) e = {'foo','bar','baz','foo','qux'} #키가 없으면{}는 set f = {42, 'foo', (1,2,3), 3.141592} print('a - ', type(a),a) print('b - ', type(b),b) print('c - ', type(c),c) print('d - ', type(d),d) print('e - ', type(e),e) print('f - ', type(f),f) #튜플 변환(set ..
썸네일 Chapter03-5 딕셔너리 #chapter03-5 #파이썬 딕셔너리 #범용적으로 가장 많이 사용 (JSON) #딕셔너리 자료형(순서x, 키 중복x, 수정o, 삭제o) #선언 a={'name':'Kim', 'phone':'01066146662','birth':'950531'} b={0: 'Hello python'} c={'arr':[1,2,3,4]} d={ 'Name' : 'Niceman', 'City' : 'Seoul', 'Age' : 33, 'Grade' : 'A', 'Status' : True } e = dict([ ('Name', 'Niceman'), ('City', 'Seoul'), ('Age',33), ('Grade','A'), ('Status', True) ]) f = dict( Name='Niceman', City='..
썸네일 Chapter03-4 튜플 #Chapter03-4 #파이썬 튜플 #리스트와 비교 중요 #튜플 자료형 (순서o, 중복o, 수정x, 삭제x) #불변 #선언 a=() b=(1,) #끝이 ,로 끝나야 튜플처리 c=(11,12,13,14) d=(100,1000,'Ace','Base','Captine') e=(100,1000,('Ace','Base','Captine')) #인덱싱 print('d - ', d[1]) print('d - ', d[0]+d[1]+d[1]) print('d - ', d[-1]) print('d - ', e[-1][1]) print('d - ', list(e[-1][1])) #수정x #d[0] = 1500 #슬라이싱 print('d -', d[0:3]) print('d -', d[2:]) print('d -', e[..
썸네일 Chapter03-3 리스트 #Chapter03-3 #파이썬 리스트 #자료구조에서 중요 #리스트 자료형 (순서o, 중복o, 수정o, 삭제o) #선언 a=[] b=list() c=[70,75,80,85] #len print(len(c)) d =[1000,10000,'Ace','Base','Captine'] e = [1000, 10000,['Ace','Base','Captine']] f = [21.42, 'foobar', 3, 4, False, 3.141592] #인덱싱 print('>>>>>') print('d -', type(d), d) print('d -', d[1]) print('d -', d[0] + d[1] + d[1]) print('d -', d[-1]) print('e -', e[-1][1]) print('e - ', l..
썸네일 Chapter03-2 문자형 #Chapter03-2 # 파이썬 문자형 # 문자형 중요 #문자열 생성 str1="I am Python" str2='python' str3="""how are you?""" str4='''thank you!''' print(type(str1),type(str2),type(str3),type(str4)) print(len(str1),len(str2),len(str3),len(str4)) #빈 문자열 str1_t1 = '' str2_t2 = str() print(type(str1_t1),len(str1_t1)) print(type(str2_t2),len(str2_t2)) #이스케이프문 문자 사용 #I'm Boy print("I'm Boy") print('I\'m Boy') print('I\\m Boy') p..
썸네일 Chapter03-1 숫자형 #chapter03-1 #숫자형 #파이썬 지원 자료형 """ int : 정수 float : 실수 complex : 복소수 bool : 불린 str : 문자열(시퀀스) list : 리스트(시퀀스) tuple : 튜플(시퀀스) set : 집합 dict : 사전 """ #데이터 타입 str1 = "python" boolb = True str2 = 'anaconda' floatb = 10.0 intb = 7 listb = [str1, str2] dictb = { "name":"Machine Learning", "version" : 2.0 } tupleb = (7,8,9) setb = {3,5,7} # 데이터 타입 출력 print(type(str1)) print(type(bool)) print(type(str2)..