-1
How do I print the size of each of the strings the user types? Every time I ask to print out how many strings are inside the list and not the number of characters of each string inside
lista = []
while True:
nome = str(input())
if nome == 'fim' or nome == 'FIM':
break
lista.append(nome)
print(len(lista))```