3 of 8
π Conditionals π Indentation
Part A:
level = 15 has_pass = True
If level >= 10 AND has_pass, print "VIP Access!". Otherwise print "Access Denied"
Part B:
score = 85
Print rank based on score:
Part C:
coins = 120 item_cost = 100 in_shop = True
If in_shop is True:
VIP Access!
B Rank
Bought! 20 coins left