EV Technology - EV Industry and Policy
This code tries to calculate total recycled items but has an error:
items = {'plastic': 4, 'paper': 6, 'glass': 3}
total = 0
for item in items:
total += items[item]
print(totall)
What is the error?