1
I’m trying to pull this one out None
, I’ve already put else
, I’ve already put add2
and then I defined add = add2
but I haven’t been able to get it out.
How does it look:
Which fruit do you want to add to the list? strawberry
Want to add more fruit? maybe
Please type yes or no:
None (and the text box to type)
(same problem in both ifs)
frutas = []
novafruta = input('Qual fruta você quer adicionar à lista? ')
frutas.append(novafruta)
add = input('Quer adicionar mais fruta? ')
if add != 'sim' or add != 'não':
add = input(print('Por favor *digite sim ou não: '))
while add == 'sim':
frutas.append(input('Qual fruta você quer adicionar à lista? '))
add = input('Quer adicionar mais fruta? ')
if add != 'sim' or add != 'não':
add = input(print('Por favor digite sim ou não: '))