Skip to content

Commit 0113dd8

Browse files
committed
New Challenge 15 solution; change challenge numbering
1 parent 17da88a commit 0113dd8

23 files changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Cyclone Coaster 🎒
2+
# CodΓ©dex
3+
4+
myHeight = 150
5+
withTallerPerson = False
6+
7+
if myHeight >= 200:
8+
print("Enjoy the ride!")
9+
10+
if myHeight < 200:
11+
if myHeight < 100 or not withTallerPerson:
12+
print("You're not tall enough for this ride yet.")
13+
elif myHeight >= 100 and withTallerPerson:
14+
print("Enjoy the ride!")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)