꼬물꼬물 개발자
input, and, or 본문
# 음주 가능 나이 계산기
# input 함수
age = input("How old are ypu?")
print("user answer", age)
# type 함수
print(type(age))
print("-------------")
# type 변경
age = int(input("How old are ypu?"))
# and : 조건이 모두 True 이면 True
# or : 조건이 하나만 True 여도 True
if age < 18:
print("You can't drink.")
elif age >= 18 and age <= 35:
print("You drink beer!")
elif age == 60 or age == 70:
print("Birthday party!")
else:
print("Go ahead!")
결과

'Python' 카테고리의 다른 글
list, tuples, dictionary (0) | 2024.08.31 |
---|---|
while (0) | 2024.08.30 |
if, else, elif (0) | 2024.08.23 |
Return (0) | 2024.08.22 |
Functions (0) | 2024.08.22 |