
names = ["Gamas", "John", "Parna"]
print(names[3])
def add(n1, n2, n3):
result = n1+n2+n3
return result
add(1,2)Then, create a new file called Sep1_FixPythonErrorsHomework and copy and paste the code from here: https://www.ayclogic.com/fixing-python-bugs/
Then try to fix the code.