问答详情
源自:3-4 Python的布尔类型

为什么print('hello', 'python')打印出来的不是 hello, python,而是('hello', 'python'),多了括号和引号?

print('hello', 'python') #==> ('hello', 'python')
print('hello') #==> hello


提问者:慕盖茨7031404 2020-09-06 15:47

个回答

  • 慕先生5347740
    2020-09-06 21:58:28
    已采纳

    我觉得这是imooc的IDE本身的问题,我在命令行和python的编辑器中尝试了之后,print('hello''python') 打印出来的就是hello,python


  • 一码渡江
    2020-11-15 16:48:05

    让我来告诉你为啥,因为imooc的测试python环境是2.0系列版本的,而他的代码是按照python3.0系列版本的特性来写的。

  • 木子雨
    2020-09-06 16:20:38

    print('hello'+','+'python') #==>hello,python