Skip to content

Commit 6ff797b

Browse files
Module 6 if statements
1 parent 23aa5cd commit 6ff797b

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
print('Hello World')
1+
#meanwhile earlier in the day
2+
bestTeam = "senators"
3+
4+
#if statements with strings
5+
#favouriteTeam = input("What is your favourite hockey team? ")
6+
#if favouriteTeam.upper() == bestTeam.upper() :
7+
# print("Yeah Go Sens Go")
8+
# print("But I miss Alfredsson")
9+
#print ("It's okay if you prefer football/soccer")
10+
11+
#if with numbers
12+
freeToaster = None
13+
14+
deposit = int(input("how much do you want to deposit "))
15+
if deposit > 100 :
16+
freeToaster = True
17+
18+
#complex code here...
19+
if freeToaster :
20+
print("enjoy your toaster")
21+
print("Have a nice day!")

0 commit comments

Comments
 (0)