for s in "hello world":
A: hello world
B: world
C: hello
D: helloworld
A: hello world
B: world
C: hello
D: helloworld
举一反三
- print("hello"+"world")的输出结果是。 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
- world = "world"str = 'hello'print str+world 的结果为 A: helloworld B: hello world C: hello "world" D: 语法错误
- print("hello ",end='')print("world")运行完成会输出什么内容? A: helloworld B: hello world C: helloworld D: hello '' world
- 执行下列语句后的显示结果是什么? >>> world=”world” >>> print( “hello”+ world) A: helloworld B: “hello”world C: hello world