can someone help me and tell me why my code isn't working as it should?
Archiviert a year ago
F
ryn
Copy Paster!
can someone help me and tell me why my code isn't working as it should? despite coddytech telling me it works perfectly
```py
def change_element(lst, index, new_element):
lst[index] = new_element
return lst
x = list(input())
y = int(input())
z = input()
print(change_element(x, y, z))
```
