7
How do I make for the if
check a boolean negation, as below:
self.senha = Gugu_0099
for i in self.senha:
if i.isdigit() and i.isalpha():
total_simbolos += 1
I want you to get into this if
if the character is neither number nor alphabet.
When studying PHP it was possible to use exclamation to show negation, for example:
!i.isdigital()
I was having a similar problem,!
– KALIBBAN