How do I detect that the string entered by the user has more than 6 characters for example ???
. . . . . ..
.
How do I detect that the string entered by the user has more than 6 characters for example ???
. . . . . ..
.
just use len (string) > 6, the len function returns you the string size ai just compare with the number you want
You can do like :
senha = '123Mudar' # variável com a senha
tamanho = len(senha) # calcular o tamanho da senha com a função len
if tamanho > 6: # verificar se a senha é maior que 6
print("Senha maior que 6")