Commit ·
4ed7964
1
Parent(s): 2a29106
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
while True:
|
| 2 |
+
reply1 = "What is your question?"
|
| 3 |
+
print(reply1)
|
| 4 |
+
user_response = input()
|
| 5 |
+
reply2 = "What do you want the answer to be?"
|
| 6 |
+
print(reply2)
|
| 7 |
+
user_response = input()
|
| 8 |
+
reply3 = "That is the answer. As your intuition is simply what you want. What is your next question?"
|
| 9 |
+
print(reply3)
|