EV Technology - EV Industry and Policy
The following code is intended to print all EV career roles from a list, but it causes an error:
ev_roles = ["Engineer", "Sales", "Technician"]
for i in range(len(ev_roles)+1):
print(ev_roles[i])
What is the error and how to fix it?