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