We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76b6b3 commit 999fb64Copy full SHA for 999fb64
Problem Set 1/bank/bank.py
@@ -0,0 +1,8 @@
1
+greeting = input("Greeting: ").lower().strip()
2
+
3
+if "hello" in greeting :
4
+ print("$0")
5
+elif greeting.startswith('h'):
6
+ print("$20")
7
+else:
8
+ print("$100")
0 commit comments