"hello".repeat(3)的执行结果是
A: hello
B: hellooo
C: helloooo
D: hellohellohello
A: hello
B: hellooo
C: helloooo
D: hellohellohello
举一反三
- 以下程序运行后的输出结果是x="hello "print(x*3) A: hello*3 B: hello hello hello C: hello D: hellohellohello
- 语句”Hello”.equals(“hello”);的正确执行结果是()。
- 执行下列代码后,新字符串中的结果是() A: HELLO WORLD! B: Hello World! C: HELLO WORLD1 D: hELLO wORLD!
- 执行下列语句后的显示结果是( )world="world"print("hello"+world) A: helloword B: "hello"world C: hello world D: "hello"+world
- 执行以下程序,输出()n = 4def func(str): global n n=3 return str*nfunc("hello")print(n) A: hellohellohellohello B: hellohellohello C: 4 D: 3