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

以下代码的输出结果是? list1 = ['a', 'b', 'c'] print(','.join(list1))

Aa,b,c
Ba,b,c,
Ca b c
Da,b,c