Our class has been given a task to sum strings in a list.
Villains = ["The Joker","Magneto","Red Mist","Doc Ock"]
for counter in range(4):
print(Villains[counter])
print("Wages")
Wages=["21","17","3","5"]
for counter in range(4):
print(Villains[counter],":£",Wages[counter],"M")
TotalWage=0
for counter in range(4):
TotalWage += Wages
That's the closest we've got so far...