Skip to content

Instantly share code, notes, and snippets.

View sheebydeeby's full-sized avatar
😋
eating pasta

sheebydeeby

😋
eating pasta
View GitHub Profile
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: "))