问答详情
源自:3-2 Python定义变量的方法

3-2提示答案有问题

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

提问者:the_tops 2021-01-07 18:05

个回答

  • 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)