Python-Learn/PythonBasic/Lesson1/input_output.py

3 lines
109 B
Python
Raw Normal View History

2022-03-19 10:13:00 +00:00
print('Lesson ','1','"start"...\n')
str = input('Please input your name:\n')
print('Your input name is:',str)