살아가면서 우리는 무수한 많은 선택지 앞에 놓이게 된다.
항상 무엇가를 선택해야하는 우리의 삶처럼 프로그래밍에서도 조건문을 이용할 수 있다.
파이썬에서 조건문은 if... elif... else 의 형식으로 나타낼 수 있다.
다음 코드를 참고하자.
print("Welcome to the rollercoaster!")
height = int(input("what is your height in cm?"))
#1
if height > 120:
print("you can ride the rollercoaster!")
else:
print("Sorry, you have to grow taller before you can ride.")
#2
if height >=120 :
print("You can ride the rollercoaster!")
age = int(input("what is your age?"))
if age < 12 :
print("Please pay $ 5.")
elif age <=18:
print("Please pay $ 7.")
else:
print("Please pay $ 12.")
else:
print("Sorry, you have to grow taller before you can ride.")
#test
number = int(input("Which number do you want to check? "))
if number % 2 == 0:
print("this number is even")
else:
print("this number is odd")
[Python] List (0) | 2022.05.14 |
---|---|
[Python] Multiple if Condition (0) | 2022.05.12 |
[Python] 파이썬에서 숫자 다루기 (0) | 2022.05.09 |
[Python] Data Type (0) | 2022.05.02 |
[Python] 산술연산자 (0) | 2022.02.11 |