慕沐9477559
2020-08-31 09:39
不能够输出想要的结果
要一条条的命令执行
hello = 'Hello' space = ' ' world = 'World' print(hello, space, world)
版本不同吗?
代码里少了‘ ’号,正确代码是print(‘hello,space,world‘)
print里面用加号
print(hello + space + world)
Python3 入门教程(新版)
154170 学习 · 1075 问题
相似问题