执行下列语句后的结果是什么?
A: helloworld
B: "hello"world?
C: helloworld
D: 语法错误
A: helloworld
B: "hello"world?
C: helloworld
D: 语法错误
举一反三
- 执行下列语句后的显示结果是什么? >>> world=”world” >>> print( “hello”+ world) A: helloworld B: “hello”world C: hello world
- 执行下列语句后的显示结果是helloworld。 world=’world’ print (‘hello’+world)
- 执行下列语句后的显示结果是什么? >>> world=”world” >>> print “hello”+ world A: helloworld B: “hello”world C: hello world D: 语法错
- 4.执行下列语句后的显示结果是什么______? A: t;>> world=”world” B: t;>> print “hello”+ world C: helloworld D: “hello”world E: hello world F: 语法错误
- world = "world"str = 'hello'print str+world 的结果为 A: helloworld B: hello world C: hello "world" D: 语法错误