第14998题 单选
Python中使用不同end参数连续三次打印a='hello python'的运行结果是什么?
a='hello python'
print(a,end='_')
print(a,end='')
print(a)
A

hello python_ hello pythonhello python

B

hello python_hello pythonhello python

C

hello python_hello python hello python

D

hello python_hellopythonhellopython

提交0次 正确率0.00%
答案解析