This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
passwords = input("Type in: ") | |
passwords = passwords.split(",") | |
accepted_pass = [] | |
for i in passwords: | |
if len(i) < 6 or len(i) > 12: | |
continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
x, y = 0, 0 | |
while True: | |
step = input("Type in UP/DOWN/LEFT/RIGHT #step number: ") | |
if step == "": | |
break |