IT/파이썬2 [파이썬 함수] while, if , esle, elif 문 실습 # while 반복문 i = 1 while i = 90: # 만일, total 점수가 90점 보다 크거나 같으면: print("A") # A 학점 elif total >= 80: # if문 안에 다시 if를 넣을 수도 있지만, elif를 쓰면 간단하게 됩니다. print("B") elif total >= 70: print("C") elif total >= 60: print("D") else: # 마지막으로 이도 저도 아니면, print("F") # F학점이 되겠군요. print_grade(35, 50) # 총점 85점이므로, B 학점이 출력됩니다. # while문과 if문을 함께 활용 # [실습] 100 이하의 자연수 중 2의 배수이지만, 3의 배수는 아닌 것을 모두 출력해봅시다. i = 2 while i 2022. 3. 13. 내가 보려고 만든 파이썬 기초함수_01 # 지정연산자? burger_price = 4 # bugur_price 값을 지정해주는 것 print(burger_price) # 4가 출력됨 # 함수를 정의하는 함수 def def hello(): # hello 함수를 정의해보자. print("Hello!") # 띄어쓰기는 필수! hello() # hello 함수를 실행. "Hello!"가 print 된다. # 파라미터(매개변수)? name def hello(name): #hello 함수를 정의하는 데, 파라미터 name을 추가해보자 print("Hello!") print(name) print("Welcome to Codeit!!") hello("chris") 아래와 같이 출력된다. Hello! chris Welcome to Codeit!! # 2개 이.. 2022. 3. 13. 이전 1 다음