答案有问题(原因可能是该网页的python环境导致)

来源:3-2 Python定义变量的方法

慕工程4986078

2020-11-09 17:03

print(hello, space, world)  结果出来是   ('Hello', ' ','World')


此网页正确输出应该是:print hello,space,world 


python2中print是关键字,python3中print是函数 


我是这么理解的,也不知道对不对         请大神解答



写回答 关注

4回答

  • the_tops
    2021-01-07 18:08:04

    hello = 'Hello'

    space = ' '

    world = 'World'

    print(hello+space+world)

    这样也可以

  • the_tops
    2021-01-07 18:06:23

    a='Hell'

    b='o Wor'

    c='ld'

    print(a+b+c)

  • 慕粉3094350
    2021-01-05 13:24:35

    不可以,这样输出就是没有空格的helloworld,人家要空格。

  • 慕工程4986078
    2020-11-09 17:05:45

    print(hello+ space+ world)    这样也是可以的

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154172 学习 · 1075 问题

查看课程

相似问题