3-2提示答案有问题

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

the_tops

2021-01-07 18:05

3-2答案有问题 ---- a='Hell' b='o Wor' c='ld' print(a+b+c)

写回答 关注

4回答

  • Lanjier119
    2021-03-25 15:34:14

    a='Hello'

    b=' '

    c='World'

    d='!'

    print(a+b+c+d)


  • 慕瓜4413896
    2021-01-15 14:22:13

    a="hello"

    b=" world"

    print(a+b)


  • the_tops
    2021-01-07 18:07:33

    hello = 'Hello'

    space = ' '

    world = 'World'

    print(hello+space+world)


  • the_tops
    2021-01-07 18:05:43

    a='Hell'

    b='o Wor'

    c='ld'

    print(a+b+c)

Python3 入门教程(新版)

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

154160 学习 · 1075 问题

查看课程

相似问题