From a798ba913a87eb55198f6321b3564f663d4bab36 Mon Sep 17 00:00:00 2001 From: SXHome Date: Sat, 19 Mar 2022 18:13:00 +0800 Subject: [PATCH] Lesson1 --- PythonBasic/Lesson1/input_output.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 PythonBasic/Lesson1/input_output.py diff --git a/PythonBasic/Lesson1/input_output.py b/PythonBasic/Lesson1/input_output.py new file mode 100644 index 0000000..70d8e2b --- /dev/null +++ b/PythonBasic/Lesson1/input_output.py @@ -0,0 +1,3 @@ +print('Lesson ','1','"start"...\n') +str = input('Please input your name:\n') +print('Your input name is:',str) \ No newline at end of file