下列语句中,___________是不正确的Python语句。
A: "I can add integers, like " + str(5) + " to strings."
B: "I said " + ("Hey " * 2) + "Hey!"
C: "The correct answer to this multiple choice exercise is answer number " + 2
D: True + False
A: "I can add integers, like " + str(5) + " to strings."
B: "I said " + ("Hey " * 2) + "Hey!"
C: "The correct answer to this multiple choice exercise is answer number " + 2
D: True + False
举一反三
- 下列语句中,( )是不正确的Python语句。 A: ”I can add int ,like”+str(8)+”to strings.” B: “I like”+(“Pizza”*2)+”Yummy!” C: “I’m ”+ 18 + “years old” D: False+False
- 执行下列Python语句将产生的结果是:i=1if(i):print(True)else:print(False) A: 1 B: True C: False D: 编译错误
- 执行下列Python语句后的显示结果是。 i=1 if(i): print(True) else: print(False)
- 执行下列Python语句产生的结果是( )。 i=0 if(i):print(True) else:print(False) A: 输出1 B: 输出True C: 输出False D: 输出0
- Python中,语句“>>> 3 [ 5 ] 2”的结果是()。 A: False B: True C: 0 D: 1