下列选项中,print("hello"+"+Python"),该语句的正确输出结果为()
A. helloPython
B. hello Python
C. hello+Python
D. hello+"+Python
查看答案
下列Python中对注释的使用错误的是()
A. print("注释")
B. 输入字符串注释
C. <-Python人工智能->
D. ‘‘‘我喜欢用Python’’’
E. """注释"""
执行print("Today\nTomorrow")时,输出结果为()。
A. Today\nTomorrow
B. Today
C. Tomorrow
D. Today Tomorrow
下列选项中可以增加字符缩进效果的是()。
A. \n
B. \r\n
C. \t
D. \b
text="sunny" print(text.replace("a","b")),执行print( )语句输出结果为()。
A. 程序报错
B. 制台没有任何输出
C. sunny
D. sunnyab