I want to return the largest and smallest string .
See:
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 types, I would like to get the largest and smallest string and print them on the screen.