반복문 while 12345678910#-*- coding: utf-8 -*- # 제어변수 0으로 초기화count1=0 while count1
전체 글
IT관련 일하면서 공부 및 일상 에 관한 내용들을 기록하기 위한 블로그 입니다.range 이용한 for 문 12345678910#-*- coding: utf-8 -*- print range(10) names = [u"김구라",u"해골",u"원숭이"]names.append(u"주뎅이")names.append(u"덩어리") for i in range(len(names)): print i, u" 번째방의 item : ", names[i]cs 콘솔창에 i 와 방의 인덱스를 이용해서 참조를 할 수 있어 len(names) == 5 니까range(len(names)) 에는 [0,1,2,3,4] 이렇게 되는 것임 range(start, end, step) 123456789#-*- coding: utf-8 -*- # range(start, end, step)print range(10) print..
파이썬 operator 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-""" 여러가지 연산자 사용해보기 """ # 논리연산자 => bool type 데이터를 연산 (and,or,not) # or 연산 : 연산에 참여하는 bool type 데이터가 어느 하나만# True 면 결과가 True 이다.print "-- or 연산 --"print False or Falseprint False or Trueprint True or Falseprint True or True # 연산에 참여하는 모든 bool 값이 True 일때 결과는..
- if 문 사용하기 1. 조건부로 특정 블럭을 수행 하고자 할때 사용2. 들여쓰기로 특정 블럭을 구성한다. 단일 if 문 1234567891011#-*- coding: utf-8 -*- # 단일 if 문 if True: print "ok 1" print "ok 2" if False: print "ok 3" print "ok 4"cs 12345678910111213141516#-*- coding: utf-8 -*- # 조건부 수행 isWait=TrueisWait2=False if isWait: print "wait!" print "wait!" print "wait!" if isWait2: print "wait!!!" print "wait!!!" print "wait!!!"cs 양자택일 1234567891..
- set type 1. 순서가 없다.2. 중복을 허용하지 않는다.3. 집합(묶음) 이라고 생각하면 된다. set type 데이터 1234567891011121314151617#-*- coding: utf-8 -*- # set type 데이터 만들기set1={10, 20, 30, 40, 50} print set1print "len(set1) :", len(set1) # set type 에 데이터 추가하기set1.add(60)set1.add(70)set1.add(70)set1.add(70)set1.add(10) print "set1:", set1 cs set type 데이터를 만들고 출력을 해보면 순서가 없는 것을 확인 할 수 있고70을 3번 이나 추가했는데도결과에 70이 1개 밖에 없는 걸 보면 중복을 ..
- dict type 1. key : value 형태로 데이터를 저장한다.2. 순서가 없는 데이터 이다.3. key 값을 이용해서 저장된 값을 참조한다. javascript 의 object 의 사용법과 완전히 똑같아단지 .을 찍어서 사용할수 없다는 것만 있어 자바스크립트에서는 두가지 방법 다 되는데 파이썬에서는 밑에 방법만 가능함 dict type 에 데이터를 담고, 수정, 삭제 하는 방법 123456789101112131415161718192021#-*- coding: utf-8 -*- # 한명의 회원정보를 dict type 에 담기dict1={"num":1, "name":u"김구라", "isMan":True} # dict type 에 저장된 데이터 참조print dict1["num"]print dic..