더북(TheBook)

7.

8. ① exchange_rates[key] = value

② exchange_rates[currency] * price

본문으로

9.

10.

age = int(input("나이를 입력하세요: "))
has_ticket = input("일반 티켓을 소지하고 있습니까? (네/아니요): ") 
is_vip = input("VIP 티켓을 소지하고 있습니까? (네/아니요): ") 
clothes_color = input("옷 색깔을 입력하세요 (검정/빨강/파랑/초록): ")
can_enter = (is_vip=="네" or (age>=18 and has_ticket=="네" and clothes_color=="파랑")) 
print(f"입장 가능 여부: {can_enter}")

본문으로

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.