We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23aa5cd commit 6ff797bCopy full SHA for 6ff797b
Module6MakingDecisionsWithCode/Module6MakingDecisionsWithCode/Module6MakingDecisionsWithCode.py
@@ -1 +1,21 @@
1
-print('Hello World')
+#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