首页题库练习题目详情
Python程序设计单选题中等

下列代码执行后的结果是?str = 'a,b,c'; print(str.split(','))

A['a', 'b', 'c']
B['a', 'b', 'c']
C['a', 'b,c']
D['a,b,c']