如何在python中创建数组array

2025-06-28 20:50:09
推荐回答(1个)
回答1:

两种方式:
①a = [1,2,3]
②b = list(1,2,3,4)