Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. def startup():
  2.  
  3. print (word = random.choice(word_list))
  4.  
  5. print (word_progress = ("_ " * (len(word))))
  6. print (word_progress = (word_progress.split()))
  7.  
  8. print (correct_guesses = (""))
  9. print (missed_letters = (""))
  10.  
  11. print (alphabet = ("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"))
  12. print (alphabet = (alphabet.split(",")))
  13.  
  14. print (failed_attempts = 0)
  15.  
  16. startup()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement