I'm starting with Python , I was trying to edit a list, but I discovered that I could not do it, since the strings are immutable . I found this solution:
lista = [0, 0, 0, 0, 0]
lista_temp = []
a=3
b="c"
for i in range(0,len(lista)):...
asked by
20.05.2017 / 23:12