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