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

以下哪项代码可以正确初始化一个列表?

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