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

如何初始化一个列表,里面的元素为数字1、2、3?

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