第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%
答案解析