diff --git a/py/read-from-input.py b/py/read-from-input.py new file mode 100644 index 0000000..95805f3 --- /dev/null +++ b/py/read-from-input.py @@ -0,0 +1,7 @@ +print("Enter your name:") +x = input() # waiting for input +print("Hello, " + x) + +print('Ah hello, and who else is there?') +y = input() +print('Ah hello: ' + y) \ No newline at end of file