0
I wish to return to the greater and the lesser string.
Look at:
nl=str(input('Digite uma string'))
String=[]
string.append(nl)
while caractere != 'pare':
caractere = str(input("Digite uma letra ou número "))
string.append(caractere)
Among the entries the user writes, I would like to take the largest and the smallest string and print them on screen.
But the user will enter a letter, number or text?
– Woss
any type of string, the smallest and longest string strings would be printed. Ex: 23123 Asd da as . The output would be: minor = . major = 23123
– Aprendiz