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

如何使用list()函数初始化一个列表?

Alist = list()
Blist = list('123')
Clist = list(123)
Dlist = list([1, 2, 3])