📌  相关文章
📜  ajouter dans une liste python 代码示例

📅  最后修改于: 2022-03-11 14:45:13.254000             🧑  作者: Mango

代码示例3
>>> list = [1,2,3,4]
>>> tot = 0
>>> for i in list:
...     tot = tot + i
... 
>>> tot
10