This file contains 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
from getpass import getpass | |
def gap(x): #function to print a space | |
for i in range(x): | |
print("") | |
def valid_guess(): #only allows guesses that are valad | |
while True: | |
x = str(input("Guess: ")) |