Skip to content

Instantly share code, notes, and snippets.

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: "))