6 lines
129 B
Python
6 lines
129 B
Python
>>> password = "foo"
|
|
>>> if len(password) < 6: # Pythonic
|
|
... print("Password is too short.")
|
|
...
|
|
Password is too short.
|