Python-Learn/PythonBasic/Lesson1/input_output.py
2022-03-19 18:13:00 +08:00

3 lines
109 B
Python

print('Lesson ','1','"start"...\n')
str = input('Please input your name:\n')
print('Your input name is:',str)