0
What is wrong with this code ??????
2 Respostas
+ 5
Tuples are immutable that means their data can't be changed. So use list instead of tuple
https://code.sololearn.com/cgIc7CpQyLF2/?ref=app
+ 2
names is a tuple and tuples are immutable in python use the square brackets instead of the parentheses to make a list