print
、input
和字符串串联的内容,使用 Python 脚本来显示个性化问候语。
1.通过在终端提示键入 code 启动在线代码编辑器。
2.将以下语句键入或粘贴到编辑器:
print('Welcome!') name = input('Enter your name: ') print('Hello, ' + name)
3.将文件另存为 hello.py
。 可以单击云编辑器右上角的省略号“...”,也可以使用快捷键(按 Windows 和 Linux 上的 Ctrl+S,或按 macOS 上的 Cmd+S)。
4.可以使用 ls
命令验证文件是否在磁盘上
5.使用 Python 解释器执行脚本。
python hello.py
6.出现提示时,键入名称并按 Enter。确认个性化问候语显示在输出中:
Welcome! Enter your name: CommandNotFound Hello, CommandNotFound
如果想在名称后面添加感叹号,以使问候语显示为 "Hello, CommandNotFound!",你将如何操作?