Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
One possible program:
password = input("Choose a password: ")
while len(password) < 8:
print("Too short - need at least 8 characters.")
password = input("Choose a password: ")
print("Password accepted")