sublime text3运行python代码
msg = input('Tell me your name:')
print("hello " + msg)
编译运行之后有Tell me your name: ,在Tell me your name: 后输入名字,再回车键,没有hello +名字的形式输出,这是怎么回事?
Leew2020
2020/11/23 21:35- python
- 点赞
- 收藏
- 回答
msg = input('Tell me your name:')
print("hello " + msg)
编译运行之后有Tell me your name: ,在Tell me your name: 后输入名字,再回车键,没有hello +名字的形式输出,这是怎么回事?