第27614题 单选题
执行以下Python代码,输出的结果是?

给定Python代码片段:

s = "  hello world  python  "
print(s.split())
A

['hello', 'world', 'python']

B

['', 'hello', 'world', 'python', '']

C

[' hello', 'world ', 'python']

D

['hello world python']

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