Comment additionner une liste dans Python

liste = [1,2,3,4]
tot = 0
for i in liste:
  tot = i + tot
print(tot)
flaawerr