본문 바로가기

programmer/python

Python 속성!

조건문

if a < 10: 
 print("apple") 
elif a <= 20 and a >= 10: 
 print("banana") 
else: 
 print("pineapple") 


함수

def 함수명(매개변수):
 내용

def chat(name1, name2, age): 
 print("%s : hi, how old are you?" % name1) 
 print("%s : hello, I`m %d years old" % (name2, age)) 
 return 'wow' 



print(chat("수호", "성호", 20)) 



반복문

for 반복문
0부터 시작

for i in rangle(10): 
 print("repeat 10 times") 

c++  
for(int i =0; i< 10 ; i++) 


while 반복문

while i<3: 
 i=i+1 

c++  
while(i<3) 
 i=i+1 


continue, break 문

while True: 
 i=i+1 

if i ==1 
 continue 

if i>2: 
 break 


리스트


 
튜플

x = tuple() 
y = () 

x = (1,2,3) 
y = ('a','b','c') 

#값을 못바꿈 error!! 
x[0]  = 10 


dictionary

x = {
	"name": "suho",
    "age" : 20,
    }
    
print(x["name"])
print(x["age"])

#key 값은 변경할 수 없음

if "age" in x
 print("yes")
 
 
 # 모든 키
 x.keys()
 #모든 값
 x.values()
 
 for key in x:
  print("key" + str(key))
  print("value" + str(x[key]))

#값 변경
x[0] = "haha"

#키 추가
x["newKey"] = "one"
 
반응형
사업자 정보 표시
라울앤알바 | 장수호 | 서울특별시 관악구 봉천로 13나길 58-10, 404호(봉천동) | 사업자 등록번호 : 363-72-00290 | TEL : 010-5790-0933 | Mail : shjang@raulnalba.com | 통신판매신고번호 : 2020-서울관악-0892호 | 사이버몰의 이용약관 바로가기

'programmer > python' 카테고리의 다른 글

venv returned non-zero exit status 1 에러  (0) 2020.09.02
pip 갑자기 안될때!!!!  (0) 2020.09.02
Python 형변환 정리(Casting)  (0) 2020.07.14
파이선 속성! 3  (0) 2020.06.09
파이선 속성! 2  (0) 2020.06.09