在Python中实现'0'列表的另一种方法

时间:2017-10-18 09:27:40

标签: python

这是我知道用零编制相同大小的列表的唯一方法。只是好奇,有另一种方式吗?

line = [13,20,0,44]
result = []

for i in range(len(line)):
    result.append(0)
print (result)

1 个答案:

答案 0 :(得分:3)

Python 2& 3

.after()