第27557题 单选题
执行以下Python代码后,输出的结果是?
text = "  python programming  "
result = text.strip().split()
print(result)
A

['python', 'programming']

B

[' python', 'programming ']

C

['python programming']

D

[" python programming "]

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析