print("hello"+"world")的输出结果是。
A: “hello”world
B: hello world
C: "hello"+world
D: helloworld
A: “hello”world
B: hello world
C: "hello"+world
D: helloworld
举一反三
- 运行print(“\”hello world\)将输出() A: helloworld B: hello world" C: "hello world D: hello world
- print("hello ",end='')print("world")运行完成会输出什么内容? A: helloworld B: hello world C: helloworld D: hello '' world
- world = "world"str = 'hello'print str+world 的结果为 A: helloworld B: hello world C: hello "world" D: 语法错误
- 执行下列语句后的显示结果是什么? >>> world=”world” >>> print( “hello”+ world) A: helloworld B: “hello”world C: hello world
- 执行下列选项,输出了'Hello World'的选项是________。 A: print('Hello World\") B: print('\"Hello World\"') C: print('"HelloWorld"') D: print("'Hello World'")