programmer/python (21) 썸네일형 리스트형 Python 속성! 조건문 if a < 10: print("apple") elif 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 이전 1 2 3 다음