Hangman Game In Python With Free Source Code

The Hangman Game In Python is written in a Python programming language, this Hangman Game Project is to implement the Hangman Game using Python.

It doesn’t require any specific modules other than random and time. Python loops and functions are enough to build this game here. In This article, I will show you How to code a Hangman Game in Python.

A Hangman Game On Python is about guessing letters (A-Z) to form words.

If the player guesses the right letter that is within the word, the letter appears at its correct position. The user has to guess the correct word until a man is hung, then the game is over.

Python Hangman Game: Project Information

Project Name:Hangman Game In Python
Language/s Used:Python Console Based
Python version (Recommended):2.x or 3.x
Database:None
Type:Python App
Developer:IT SOURCECODE
Updates:0
Hangman Game In Python – Project Information

Anyway, if you want to level up your knowledge in programming especially games in Python, try this new article I’ve made for you Code For Game in Python: Python Game Projects With Source Code.

This Hangman Game Project Documentation In Python also includes a downloadable Hangman Game In Python Code for free, just find the downloadable source code below and click to start downloading.

To start Making A Hangman Game In Python, make sure that you have PyCharm IDE installed on your computer.

By the way, if you are new to Python programming and don’t know what Python IDE to use, I have here a list of the Best Python IDE for Windows, Linux, and Mac OS that will suit you.

I also have here How to Download and Install the Latest Version of Python on Windows.

How to create a Hangman Game using Python: Step-by-step Guide

Hangman Game in Python With Source Code

  • Step 1: Create a project name.

    First, open Pycharm IDE and then create a “project name.” After creating a project name click the “create” button.

    Hangman Game In Python Project Name

  • Step 2: Create a python file.

    Second, after creating a project name, “right-click” your project name and then click “new.” After that click the “python file“.Hangman Game In Python File

  • Step 3: Name your Python file.

    Third, after creating a Python file, Name your Python file after that click “enter“.
    Hangman Game In Python File Name

  • Step 4: The actual code.

    You are free to copy the code given below and download the full source code below.

The Code Given Below is For Importing Modules

import random
import time

The code is given which is importing all modules.

The Code Given Below Is For The Main Module

def main():
    global count
    global display
    global word
    global already_guessed
    global length
    global play_game
    words_to_guess = ["january","border","image","film","promise","kids","lungs","doll","rhyme","damage"
                   ,"plants"]
    word = random.choice(words_to_guess)
    length = len(word)
    count = 0
    display = '_' * length
    already_guessed = []
    play_game = ""

This module is the main module of the game that consists of declaring the variables to be called and it consists of the guest word to be answered by the player.

The Code Given Below Is for The Boolean

def play_loop():
    global play_game
    play_game = input("Do You want to play again? y = yes, n = no \n")
    while play_game not in ["y", "n","Y","N"]:
        play_game = input("Do You want to play again? y = yes, n = no \n")
    if play_game == "y":
        main()
    elif play_game == "n":
        print("Thanks For Playing! We expect you back again!")
        exit()

In this module which is the boolean of the game that ask question to the user of the “YES” or “NO” question.

Complete Source Code

import random
import time

# Initial Steps to invite in the game:
print("\nWelcome to Hangman game by IT SOURCECODE\n")
name = input("Enter your name: ")
print("Hello " + name + "! Best of Luck!")
time.sleep(2)
print("The game is about to start!\n Let's play Hangman!")
time.sleep(3)


# The parameters we require to execute the game:
def main():
    global count
    global display
    global word
    global already_guessed
    global length
    global play_game
    words_to_guess = ["january","border","image","film","promise","kids","lungs","doll","rhyme","damage"
                   ,"plants"]
    word = random.choice(words_to_guess)
    length = len(word)
    count = 0
    display = '_' * length
    already_guessed = []
    play_game = ""

# A loop to re-execute the game when the first round ends:

def play_loop():
    global play_game
    play_game = input("Do You want to play again? y = yes, n = no \n")
    while play_game not in ["y", "n","Y","N"]:
        play_game = input("Do You want to play again? y = yes, n = no \n")
    if play_game == "y":
        main()
    elif play_game == "n":
        print("Thanks For Playing! We expect you back again!")
        exit()

# Initializing all the conditions required for the game:
def hangman():
    global count
    global display
    global word
    global already_guessed
    global play_game
    limit = 5
    guess = input("This is the Hangman Word: " + display + " Enter your guess: \n")
    guess = guess.strip()
    if len(guess.strip()) == 0 or len(guess.strip()) >= 2 or guess <= "9":
        print("Invalid Input, Try a letter\n")
        hangman()


    elif guess in word:
        already_guessed.extend([guess])
        index = word.find(guess)
        word = word[:index] + "_" + word[index + 1:]
        display = display[:index] + guess + display[index + 1:]
        print(display + "\n")

    elif guess in already_guessed:
        print("Try another letter.\n")

    else:
        count += 1

        if count == 1:
            time.sleep(1)
            print("   _____ \n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "__|__\n")
            print("Wrong guess. " + str(limit - count) + " guesses remaining\n")

        elif count == 2:
            time.sleep(1)
            print("   _____ \n"
                  "  |     | \n"
                  "  |     |\n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "  |      \n"
                  "__|__\n")
            print("Wrong guess. " + str(limit - count) + " guesses remaining\n")

        elif count == 3:
           time.sleep(1)
           print("   _____ \n"
                 "  |     | \n"
                 "  |     |\n"
                 "  |     | \n"
                 "  |      \n"
                 "  |      \n"
                 "  |      \n"
                 "__|__\n")
           print("Wrong guess. " + str(limit - count) + " guesses remaining\n")

        elif count == 4:
            time.sleep(1)
            print("   _____ \n"
                  "  |     | \n"
                  "  |     |\n"
                  "  |     | \n"
                  "  |     O \n"
                  "  |      \n"
                  "  |      \n"
                  "__|__\n")
            print("Wrong guess. " + str(limit - count) + " last guess remaining\n")

        elif count == 5:
            time.sleep(1)
            print("   _____ \n"
                  "  |     | \n"
                  "  |     |\n"
                  "  |     | \n"
                  "  |     O \n"
                  "  |    /|\ \n"
                  "  |    / \ \n"
                  "__|__\n")
            print("Wrong guess. You are hanged!!!\n")
            print("The word was:",already_guessed,word)
            play_loop()

    if word == '_' * length:
        print("Congrats! You have guessed the word correctly!")
        play_loop()

    elif count != limit:
        hangman()


main()


hangman()

Downloadable Source Code

I have here the list of Best Python Project with Source code free to download for free, I hope this can help you a lot.

Summary

The Hangman Game In Python project requires good knowledge of Python which includes defining functions and managing for/while loops.

The functions that we use here contain arguments that are defined in a global scope which can be further used in other functions to improve game quality.

It can also be used to provide different steps when required to execute upon conditions by the for and while loops.

The objective of our project is to implement the hangman game using Python. It doesn’t require any specific modules other than random and time. Python loops and functions are enough to build this game here.

Inquiries

If you have any questions or suggestions about Hangman Game In Python, please feel free to leave a comment below.

5 thoughts on “Hangman Game In Python With Free Source Code”

    • Hey vin,

      play_loop() needs to have hangman() in it to process the game:

      def play_loop():
      global play_game
      play_game = input(“Do You want to play again? y = yes, n = no \n”)
      while play_game not in [“y”, “n”,”Y”,”N”]:
      play_game = input(“Do You want to play again? y = yes, n = no \n”)
      if play_game == “y”:
      main()
      hangman()
      elif play_game == “n”:
      print(“Thanks For Playing! We expect you back again!”)
      exit()

  1. hi there, there are a few errors which i have pretty much fixed apart from one, my knowledge as a 14 year old is limited but you used the same variable word for the letters that were guessed, “letter index”, this means at the end when it tells you what letters you haven’t guessed, not the completed word, i also have added in more words to add so when you repeat, it will not give the same word:

    import random
    import time

    # Initial Steps to invite in the game:
    print(“Welcome to Hangman”)
    time.sleep(2)
    print(“The game is about to start!\n Let’s play Hangman!”)
    time.sleep(3)

    # The parameters we require to execute the game:
    def main():
    global count
    global display
    global word
    global already_guessed
    global length
    global play_game
    words_to_guess = [“aback”,”abaft”,”abandoned”,”abashed”,”aberrant”,”abhorrent”,”abiding”,”abject”,”ablaze”,”able”,”abnormal”,”aboard”,”aboriginal”,”abortive”,”abounding”,”abrasive”,”abrupt”,”absent”,”absorbed”,”absorbing”,”abstracted”,”absurd”,”abundant”,”abusive”,”accept”,”acceptable”,”accessible”,”accidental”,”account”,”accurate”,”achiever”,”acid”,”acidic”,”acoustic”,”acoustics”,”acrid”,”act”,”action”,”activity”,”actor”,”actually”,”ad hoc”,”adamant”,”adaptable”,”add”,”addicted”,”addition”,”adhesive”,”adjoining”,”adjustment”,”admire”,”admit”,”adorable”,”adventurous”,”advertisement”,”advice”,”advise”,”afford”,”afraid”,”aftermath”,”afternoon”,”afterthought”,”aggressive”,”agonizing”,”agree”,”agreeable”,”agreement”,”ahead”,”air”,”airplane”,”airport”,”ajar”,”alarm”,”alcoholic”,”alert”,”alike”,”alive”,”alleged”,”allow”,”alluring”,”aloof”,”amazing”,”ambiguous”,”ambitious”,”amount”,”amuck”,”amuse”,”amused”,”amusement”,”amusing”,”analyze”,”ancient”,”anger”,”angle”,”angry”,”animal”,”animated”,”announce”,”annoy”,”annoyed”,”annoying”,”answer”,”ants”,”anxious”,”apathetic”,”apologise”,”apparatus”,”apparel”,”appear”,”applaud”,”appliance”,”appreciate”,”approval”,”approve”,”aquatic”,”arch”,”argue”,”argument”,”arithmetic”,”arm”,”army”,”aromatic”,”arrange”,”arrest”,”arrive”,”arrogant”,”art”,”ashamed”,”ask”,”aspiring”,”assorted”,”astonishing”,”attach”,”attack”,”attempt”,”attend”,”attract”,”attraction”,”attractive”,”aunt”,”auspicious”,”authority”,”automatic”,”available”,”average”,”avoid”,”awake”,”aware”,”awesome”,”awful”,”axiomatic”,”babies”,”baby”,”back”,”bad”,”badge”,”bag”,”bait”,”bake”,”balance”,”ball”,”ban”,”bang”,”barbarous”,”bare”,”base”,”baseball”,”bashful”,”basin”,”basket”,”basketball”,”bat”,”bath”,”bathe”,”battle”,”bawdy”,”bead”,”beam”,”bear”,”beautiful”,”bed”,”bedroom”,”beds”,”bee”,”beef”,”befitting”,”beg”,”beginner”,”behave”,”behavior”,”belief”,”believe”,”bell”,”belligerent”,”bells”,”belong”,”beneficial”,”bent”,”berry”,”berserk”,”best”,”better”,”bewildered”,”big”,”bike”,”bikes”,”billowy”,”bird”,”birds”,”birth”,”birthday”,”bit”,”bite”,”bite-sized”,”bitter”,”bizarre”,”black”,”black-and-white”,”blade”,”bleach”,”bless”,”blind”,”blink”,”blood”,”bloody”,”blot”,”blow”,”blue”,”blue-eyed”,”blush”,”blushing”,”board”,”boast”,”boat”,”boil”,”boiling”,”bolt”,”bomb”,”bone”,”book”,”books”,”boorish”,”boot”,”border”,”bore”,”bored”,”boring”,”borrow”,”bottle”,”bounce”,”bouncy”,”boundary”,”boundless”,”bow”,”box”,”boy”,”brainy”,”brake”,”branch”,”brash”,”brass”,”brave”,”brawny”,”breakable”,”breath”,”breathe”,”breezy”,”brick”,”bridge”,”brief”,”bright”,”broad”,”broken”,”brother”,”brown”,”bruise”,”brush”,”bubble”,”bucket”,”building”,”bulb”,”bump”,”bumpy”,”burly”,”burn”,”burst”,”bury”,”bushes”,”business”,”bustling”,”busy”,”butter”,”button”,”buzz”,”cabbage”,”cable”,”cactus”,”cagey”,”cake”,”cakes”,”calculate”,”calculating”,”calculator”,”calendar”,”call”,”callous”,”calm”,”camera”,”camp”,”can”,”cannon”,”canvas”,”cap”,”capable”,”capricious”,”caption”,”car”,”card”,”care”,”careful”,”careless”,”caring”,”carpenter”,”carriage”,”carry”,”cars”,”cart”,”carve”,”cast”,”cat”,”cats”,”cattle”,”cause”,”cautious”,”cave”,”ceaseless”,”celery”,”cellar”,”cemetery”,”cent”,”certain”,”chalk”,”challenge”,”chance”,”change”,”changeable”,”channel”,”charge”,”charming”,”chase”,”cheap”,”cheat”,”check”,”cheer”,”cheerful”,”cheese”,”chemical”,”cherries”,”cherry”,”chess”,”chew”,”chicken”,”chickens”,”chief”,”childlike”,”children”,”chilly”,”chin”,”chivalrous”,”choke”,”chop”,”chubby”,”chunky”,”church”,”circle”,”claim”,”clam”,”clammy”,”clap”,”class”,”classy”,”clean”,”clear”,”clever”,”clip”,”cloistered”,”close”,”closed”,”cloth”,”cloudy”,”clover”,”club”,”clumsy”,”cluttered”,”coach”,”coal”,”coast”,”coat”,”cobweb”,”coherent”,”coil”,”cold”,”collar”,”collect”,”color”,”colorful”,”colossal”,”colour”,”comb”,”combative”,”comfortable”,”command”,”committee”,”common”,”communicate”,”company”,”compare”,”comparison”,”compete”,”competition”,”complain”,”complete”,”complex”,”concentrate”,”concern”,”concerned”,”condemned”,”condition”,”confess”,”confuse”,”confused”,”connect”,”connection”,”conscious”,”consider”,”consist”,”contain”,”continue”,”control”,”cooing”,”cook”,”cool”,”cooperative”,”coordinated”,”copper”,”copy”,”corn”,”correct”,”cough”,”count”,”country”,”courageous”,”cover”,”cow”,”cowardly”,”cows”,”crabby”,”crack”,”cracker”,”crash”,”crate”,”craven”,”crawl”,”crayon”,”crazy”,”cream”,”creator”,”creature”,”credit”,”creepy”,”crib”,”crime”,”crook”,”crooked”,”cross”,”crow”,”crowd”,”crowded”,”crown”,”cruel”,”crush”,”cry”,”cub”,”cuddly”,”cultured”,”cumbersome”,”cup”,”cure”,”curious”,”curl”,”curly”,”current”,”curtain”,”curve”,”curved”,”curvy”,”cushion”,”cut”,”cute”,”cycle”,”cynical”,”dad”,”daffy”,”daily”,”dam”,”damage”,”damaged”,”damaging”,”damp”,”dance”,”dangerous”,”dapper”,”dare”,”dark”,”dashing”,”daughter”,”day”,”dazzling”,”dead”,”deadpan”,”deafening”,”dear”,”death”,”debonair”,”debt”,”decay”,”deceive”,”decide”,”decision”,”decisive”,”decorate”,”decorous”,”deep”,”deeply”,”deer”,”defeated”,”defective”,”defiant”,”degree”,”delay”,”delicate”,”delicious”,”delight”,”delightful”,”delirious”,”deliver”,”demonic”,”depend”,”dependent”,”depressed”,”deranged”,”describe”,”descriptive”,”desert”,”deserted”,”deserve”,”design”,”desire”,”desk”,”destroy”,”destruction”,”detail”,”detailed”,”detect”,”determined”,”develop”,”development”,”devilish”,”didactic”,”different”,”difficult”,”digestion”,”diligent”,”dime”,”dinner”,”dinosaurs”,”direction”,”direful”,”dirt”,”dirty”,”disagree”,”disagreeable”,”disappear”,”disapprove”,”disarm”,”disastrous”,”discover”,”discovery”,”discreet”,”discussion”,”disgusted”,”disgusting”,”disillusioned”,”dislike”,”dispensable”,”distance”,”distinct”,”distribution”,”disturbed”,”divergent”,”divide”,”division”,”dizzy”,”dock”,”doctor”,”dog”,”dogs”,”doll”,”dolls”,”domineering”,”donkey”,”door”,”double”,”doubt”,”doubtful”,”downtown”,”drab”,”draconian”,”drag”,”drain”,”dramatic”,”drawer”,”dream”,”dreary”,”dress”,”drink”,”drip”,”driving”,”drop”,”drown”,”drum”,”drunk”,”dry”,”duck”,”ducks”,”dull”,”dust”,”dusty”,”dynamic”,”dysfunctional”,”eager”,”ear”,”early”,”earn”,”earsplitting”,”earth”,”earthquake”,”earthy”,”easy”,”eatable”,”economic”,”edge”,”educate”,”educated”,”education”,”effect”,”efficacious”,”efficient”,”egg”,”eggnog”,”eggs”,”eight”,”elastic”,”elated”,”elbow”,”elderly”,”electric”,”elegant”,”elfin”,”elite”,”embarrass”,”embarrassed”,”eminent”,”employ”,”empty”,”enchanted”,”enchanting”,”encourage”,”encouraging”,”end”,”endurable”,”energetic”,”engine”,”enjoy”,”enormous”,”enter”,”entertain”,”entertaining”,”enthusiastic”,”envious”,”equable”,”equal”,”erect”,”erratic”,”error”,”escape”,”ethereal”,”evanescent”,”evasive”,”even”,”event”,”examine”,”example”,”excellent”,”exchange”,”excite”,”excited”,”exciting”,”exclusive”,”excuse”,”exercise”,”exist”,”existence”,”exotic”,”expand”,”expansion”,”expect”,”expensive”,”experience”,”expert”,”explain”,”explode”,”extend”,”extra-large”,”extra-small”,”exuberant”,”exultant”,”eye”,”eyes”,”fabulous”,”face”,”fact”,”fade”,”faded”,”fail”,”faint”,”fair”,”fairies”,”faithful”,”fall”,”fallacious”,”false”,”familiar”,”famous”,”fanatical”,”fancy”,”fang”,”fantastic”,”far”,”far-flung”,”farm”,”fascinated”,”fast”,”fasten”,”fat”,”faulty”,”fax”,”fear”,”fearful”,”fearless”,”feeble”,”feeling”,”feigned”,”female”,”fence”,”fertile”,”festive”,”fetch”,”few”,”field”,”fierce”,”file”,”fill”,”film”,”filthy”,”fine”,”finger”,”finicky”,”fire”,”fireman”,”first”,”fish”,”fit”,”five”,”fix”,”fixed”,”flag”,”flagrant”,”flaky”,”flame”,”flap”,”flash”,”flashy”,”flat”,”flavor”,”flawless”,”flesh”,”flight”,”flimsy”,”flippant”,”float”,”flock”,”flood”,”floor”,”flow”,”flower”,”flowers”,”flowery”,”fluffy”,”fluttering”,”fly”,”foamy”,”fog”,”fold”,”follow”,”food”,”fool”,”foolish”,”foot”,”force”,”foregoing”,”forgetful”,”fork”,”form”,”fortunate”,”found”,”four”,”fowl”,”fragile”,”frail”,”frame”,”frantic”,”free”,”freezing”,”frequent”,”fresh”,”fretful”,”friction”,”friend”,”friendly”,”friends”,”frighten”,”frightened”,”frightening”,”frog”,”frogs”,”front”,”fruit”,”fry”,”fuel”,”full”,”fumbling”,”functional”,”funny”,”furniture”,”furry”,”furtive”,”future”,”futuristic”,”fuzzy”,”gabby”,”gainful”,”gamy”,”gaping”,”garrulous”,”gate”,”gather”,”gaudy”,”gaze”,”geese”,”general”,”gentle”,”ghost”,”giant”,”giants”,”giddy”,”gifted”,”gigantic”,”giraffe”,”girl”,”girls”,”glamorous”,”glass”,”gleaming”,”glib”,”glistening”,”glorious”,”glossy”,”glove”,”glow”,”glue”,”godly”,”gold”,”good”,”goofy”,”gorgeous”,”government”,”governor”,”grab”,”graceful”,”grade”,”grain”,”grandfather”,”grandiose”,”grandmother”,”grape”,”grass”,”grate”,”grateful”,”gratis”,”gray”,”grease”,”greasy”,”great”,”greedy”,”green”,”greet”,”grey”,”grieving”,”grin”,”grip”,”groan”,”groovy”,”grotesque”,”grouchy”,”ground”,”group”,”growth”,”grubby”,”gruesome”,”grumpy”,”guarantee”,”guard”,”guarded”,”guess”,”guide”,”guiltless”,”guitar”,”gullible”,”gun”,”gusty”,”guttural”,”habitual”,”hair”,”haircut”,”half”,”hall”,”hallowed”,”halting”,”hammer”,”hand”,”handle”,”hands”,”handsome”,”handsomely”,”handy”,”hang”,”hanging”,”hapless”,”happen”,”happy”,”harass”,”harbor”,”hard”,”hard-to-find”,”harm”,”harmonious”,”harmony”,”harsh”,”hat”,”hate”,”hateful”,”haunt”,”head”,”heady”,”heal”,”health”,”healthy”,”heap”,”heartbreaking”,”heat”,”heavenly”,”heavy”,”hellish”,”help”,”helpful”,”helpless”,”hesitant”,”hideous”,”high”,”high-pitched”,”highfalutin”,”hilarious”,”hill”,”hissing”,”historical”,”history”,”hobbies”,”hole”,”holiday”,”holistic”,”hollow”,”home”,”homeless”,”homely”,”honey”,”honorable”,”hook”,”hop”,”hope”,”horn”,”horrible”,”horse”,”horses”,”hose”,”hospitable”,”hospital”,”hot”,”hour”,”house”,”houses”,”hover”,”hug”,”huge”,”hulking”,”hum”,”humdrum”,”humor”,”humorous”,”hungry”,”hunt”,”hurried”,”hurry”,”hurt”,”hushed”,”husky”,”hydrant”,”hypnotic”,”hysterical”,”ice”,”icicle”,”icky”,”icy”,”idea”,”identify”,”idiotic”,”ignorant”,”ignore”,”ill”,”ill-fated”,”ill-informed”,”illegal”,”illustrious”,”imaginary”,”imagine”,”immense”,”imminent”,”impartial”,”imperfect”,”impolite”,”important”,”imported”,”impossible”,”impress”,”improve”,”impulse”,”incandescent”,”include”,”income”,”incompetent”,”inconclusive”,”increase”,”incredible”,”industrious”,”industry”,”inexpensive”,”infamous”,”influence”,”inform”,”inject”,”injure”,”ink”,”innate”,”innocent”,”inquisitive”,”insect”,”insidious”,”instinctive”,”instruct”,”instrument”,”insurance”,”intelligent”,”intend”,”interest”,”interesting”,”interfere”,”internal”,”interrupt”,”introduce”,”invent”,”invention”,”invincible”,”invite”,”irate”,”iron”,”irritate”,”irritating”,”island”,”itch”,”itchy”,”jaded”,”jagged”,”jail”,”jam”,”jar”,”jazzy”,”jealous”,”jeans”,”jelly”,”jellyfish”,”jewel”,”jittery”,”jobless”,”jog”,”join”,”joke”,”jolly”,”joyous”,”judge”,”judicious”,”juggle”,”juice”,”juicy”,”jumbled”,”jump”,”jumpy”,”juvenile”,”kaput”,”keen”,”kettle”,”key”,”kick”,”kill”,”kind”,”kindhearted”,”kindly”,”kiss”,”kittens”,”kitty”,”knee”,”kneel”,”knife”,”knit”,”knock”,”knot”,”knotty”,”knowing”,”knowledge”,”knowledgeable”,”known”,”label”,”labored”,”laborer”,”lace”,”lackadaisical”,”lacking”,”ladybug”,”lake”,”lame”,”lamentable”,”lamp”,”land”,”language”,”languid”,”large”,”last”,”late”,”laugh”,”laughable”,”launch”,”lavish”,”lazy”,”lean”,”learn”,”learned”,”leather”,”left”,”leg”,”legal”,”legs”,”lethal”,”letter”,”letters”,”lettuce”,”level”,”lewd”,”library”,”license”,”lick”,”lie”,”light”,”lighten”,”like”,”likeable”,”limit”,”limping”,”line”,”linen”,”lip”,”liquid”,”list”,”listen”,”literate”,”little”,”live”,”lively”,”living”,”load”,”loaf”,”lock”,”locket”,”lonely”,”long”,”long-term”,”longing”,”look”,”loose”,”lopsided”,”loss”,”loud”,”loutish”,”love”,”lovely”,”loving”,”low”,”lowly”,”lucky”,”ludicrous”,”lumber”,”lumpy”,”lunch”,”lunchroom”,”lush”,”luxuriant”,”lying”,”lyrical”,”macabre”,”machine”,”macho”,”maddening”,”madly”,”magenta”,”magic”,”magical”,”magnificent”,”maid”,”mailbox”,”majestic”,”makeshift”,”male”,”malicious”,”mammoth”,”man”,”manage”,”maniacal”,”many”,”marble”,”march”,”mark”,”marked”,”market”,”married”,”marry”,”marvelous”,”mask”,”mass”,”massive”,”match”,”mate”,”material”,”materialistic”,”matter”,”mature”,”meal”,”mean”,”measly”,”measure”,”meat”,”meaty”,”meddle”,”medical”,”meek”,”meeting”,”mellow”,”melodic”,”melt”,”melted”,”memorize”,”memory”,”men”,”mend”,”merciful”,”mere”,”mess up”,”messy”,”metal”,”mice”,”middle”,”mighty”,”military”,”milk”,”milky”,”mind”,”mindless”,”mine”,”miniature”,”minister”,”minor”,”mint”,”minute”,”miscreant”,”miss”,”mist”,”misty”,”mitten”,”mix”,”mixed”,”moan”,”moaning”,”modern”,”moldy”,”mom”,”momentous”,”money”,”monkey”,”month”,”moon”,”moor”,”morning”,”mother”,”motion”,”motionless”,”mountain”,”mountainous”,”mourn”,”mouth”,”move”,”muddle”,”muddled”,”mug”,”multiply”,”mundane”,”murder”,”murky”,”muscle”,”mushy”,”mute”,”mysterious”,”nail”,”naive”,”name”,”nappy”,”narrow”,”nasty”,”nation”,”natural”,”naughty”,”nauseating”,”near”,”neat”,”nebulous”,”necessary”,”neck”,”need”,”needle”,”needless”,”needy”,”neighborly”,”nerve”,”nervous”,”nest”,”new”,”next”,”nice”,”nifty”,”night”,”nimble”,”nine”,”nippy”,”nod”,”noise”,”noiseless”,”noisy”,”nonchalant”,”nondescript”,”nonstop”,”normal”,”north”,”nose”,”nostalgic”,”nosy”,”note”,”notebook”,”notice”,”noxious”,”null”,”number”,”numberless”,”numerous”,”nut”,”nutritious”,”nutty”,”oafish”,”oatmeal”,”obedient”,”obeisant”,”obese”,”obey”,”object”,”obnoxious”,”obscene”,”obsequious”,”observant”,”observation”,”observe”,”obsolete”,”obtain”,”obtainable”,”occur”,”ocean”,”oceanic”,”odd”,”offbeat”,”offend”,”offer”,”office”,”oil”,”old”,”old-fashioned”,”omniscient”,”one”,”onerous”,”open”,”opposite”,”optimal”,”orange”,”oranges”,”order”,”ordinary”,”organic”,”ossified”,”outgoing”,”outrageous”,”outstanding”,”oval”,”oven”,”overconfident”,”overflow”,”overjoyed”,”overrated”,”overt”,”overwrought”,”owe”,”own”,”pack”,”paddle”,”page”,”pail”,”painful”,”painstaking”,”paint”,”pale”,”paltry”,”pan”,”pancake”,”panicky”,”panoramic”,”paper”,”parallel”,”parcel”,”parched”,”park”,”parsimonious”,”part”,”partner”,”party”,”pass”,”passenger”,”past”,”paste”,”pastoral”,”pat”,”pathetic”,”pause”,”payment”,”peace”,”peaceful”,”pear”,”peck”,”pedal”,”peel”,”peep”,”pen”,”pencil”,”penitent”,”perfect”,”perform”,”periodic”,”permissible”,”permit”,”perpetual”,”person”,”pest”,”pet”,”petite”,”pets”,”phobic”,”phone”,”physical”,”picayune”,”pick”,”pickle”,”picture”,”pie”,”pies”,”pig”,”pigs”,”pin”,”pinch”,”pine”,”pink”,”pipe”,”piquant”,”pizzas”,”place”,”placid”,”plain”,”plan”,”plane”,”planes”,”plant”,”plantation”,”plants”,”plastic”,”plate”,”plausible”,”play”,”playground”,”pleasant”,”please”,”pleasure”,”plot”,”plough”,”plucky”,”plug”,”pocket”,”point”,”pointless”,”poised”,”poison”,”poke”,”polish”,”polite”,”political”,”pollution”,”poor”,”pop”,”popcorn”,”porter”,”position”,”possess”,”possessive”,”possible”,”post”,”pot”,”potato”,”pour”,”powder”,”power”,”powerful”,”practice”,”pray”,”preach”,”precede”,”precious”,”prefer”,”premium”,”prepare”,”present”,”preserve”,”press”,”pretend”,”pretty”,”prevent”,”previous”,”price”,”pricey”,”prick”,”prickly”,”print”,”private”,”probable”,”produce”,”productive”,”profit”,”profuse”,”program”,”promise”,”property”,”prose”,”protect”,”protective”,”protest”,”proud”,”provide”,”psychedelic”,”psychotic”,”public”,”puffy”,”pull”,”pump”,”pumped”,”punch”,”puncture”,”punish”,”punishment”,”puny”,”purple”,”purpose”,”purring”,”push”,”pushy”,”puzzled”,”puzzling”,”quack”,”quaint”,”quarrelsome”,”quarter”,”quartz”,”queen”,”question”,”questionable”,”queue”,”quick”,”quickest”,”quicksand”,”quiet”,”quill”,”quilt”,”quince”,”quirky”,”quiver”,”quixotic”,”quizzical”,”rabbit”,”rabbits”,”rabid”,”race”,”racial”,”radiate”,”ragged”,”rail”,”railway”,”rain”,”rainstorm”,”rainy”,”raise”,”rake”,”rambunctious”,”rampant”,”range”,”rapid”,”rare”,”raspy”,”rat”,”rate”,”ratty”,”ray”,”reach”,”reaction”,”reading”,”ready”,”real”,”realize”,”reason”,”rebel”,”receipt”,”receive”,”receptive”,”recess”,”recognise”,”recondite”,”record”,”red”,”reduce”,”redundant”,”reflect”,”reflective”,”refuse”,”regret”,”regular”,”reign”,”reject”,”rejoice”,”relation”,”relax”,”release”,”relieved”,”religion”,”rely”,”remain”,”remarkable”,”remember”,”remind”,”reminiscent”,”remove”,”repair”,”repeat”,”replace”,”reply”,”report”,”representative”,”reproduce”,”repulsive”,”request”,”rescue”,”resolute”,”resonant”,”respect”,”responsible”,”rest”,”retire”,”return”,”reward”,”rhetorical”,”rhyme”,”rhythm”,”rice”,”rich”,”riddle”,”rifle”,”right”,”righteous”,”rightful”,”rigid”,”ring”,”rings”,”rinse”,”ripe”,”risk”,”ritzy”,”river”,”road”,”roasted”,”rob”,”robin”,”robust”,”rock”,”rod”,”roll”,”romantic”,”roof”,”room”,”roomy”,”root”,”rose”,”rot”,”rotten”,”rough”,”round”,”route”,”royal”,”rub”,”ruddy”,”rude”,”ruin”,”rule”,”run”,”rural”,”rush”,”rustic”,”ruthless”,”sable”,”sack”,”sad”,”safe”,”sail”,”salt”,”salty”,”same”,”sand”,”sassy”,”satisfy”,”satisfying”,”save”,”savory”,”saw”,”scale”,”scandalous”,”scarce”,”scare”,”scarecrow”,”scared”,”scarf”,”scary”,”scatter”,”scattered”,”scene”,”scent”,”school”,”science”,”scientific”,”scintillating”,”scissors”,”scold”,”scorch”,”scrape”,”scratch”,”scrawny”,”scream”,”screeching”,”screw”,”scribble”,”scrub”,”sea”,”seal”,”search”,”seashore”,”seat”,”second”,”second-hand”,”secret”,”secretary”,”secretive”,”sedate”,”seed”,”seemly”,”selection”,”selective”,”self”,”selfish”,”sense”,”separate”,”serious”,”servant”,”serve”,”settle”,”shade”,”shaggy”,”shake”,”shaky”,”shallow”,”shame”,”shape”,”share”,”sharp”,”shave”,”sheep”,”sheet”,”shelf”,”shelter”,”shiny”,”ship”,”shirt”,”shiver”,”shivering”,”shock”,”shocking”,”shoe”,”shoes”,”shop”,”short”,”show”,”shrill”,”shrug”,”shut”,”shy”,”sick”,”side”,”sidewalk”,”sigh”,”sign”,”signal”,”silent”,”silk”,”silky”,”silly”,”silver”,”simple”,”simplistic”,”sin”,”sincere”,”sink”,”sip”,”sister”,”sisters”,”six”,”size”,”skate”,”ski”,”skillful”,”skin”,”skinny”,”skip”,”skirt”,”sky”,”slap”,”slave”,”sleep”,”sleepy”,”sleet”,”slim”,”slimy”,”slip”,”slippery”,”slope”,”sloppy”,”slow”,”small”,”smart”,”smash”,”smell”,”smelly”,”smile”,”smiling”,”smoggy”,”smoke”,”smooth”,”snail”,”snails”,”snake”,”snakes”,”snatch”,”sneaky”,”sneeze”,”sniff”,”snobbish”,”snore”,”snotty”,”snow”,”soak”,”soap”,”society”,”sock”,”soda”,”sofa”,”soft”,”soggy”,”solid”,”somber”,”son”,”song”,”songs”,”soothe”,”sophisticated”,”sordid”,”sore”,”sort”,”sound”,”soup”,”sour”,”space”,”spade”,”spare”,”spark”,”sparkle”,”sparkling”,”special”,”spectacular”,”spell”,”spicy”,”spiders”,”spiffy”,”spiky”,”spill”,”spiritual”,”spiteful”,”splendid”,”spoil”,”sponge”,”spooky”,”spoon”,”spot”,”spotless”,”spotted”,”spotty”,”spray”,”spring”,”sprout”,”spurious”,”spy”,”squalid”,”square”,”squash”,”squeak”,”squeal”,”squealing”,”squeamish”,”squeeze”,”squirrel”,”stage”,”stain”,”staking”,”stale”,”stamp”,”standing”,”star”,”stare”,”start”,”statement”,”station”,”statuesque”,”stay”,”steadfast”,”steady”,”steam”,”steel”,”steep”,”steer”,”stem”,”step”,”stereotyped”,”stew”,”stick”,”sticks”,”sticky”,”stiff”,”stimulating”,”stingy”,”stir”,”stitch”,”stocking”,”stomach”,”stone”,”stop”,”store”,”stormy”,”story”,”stove”,”straight”,”strange”,”stranger”,”strap”,”straw”,”stream”,”street”,”strengthen”,”stretch”,”string”,”strip”,”striped”,”stroke”,”strong”,”structure”,”stuff”,”stupendous”,”stupid”,”sturdy”,”subdued”,”subsequent”,”substance”,”substantial”,”subtract”,”succeed”,”successful”,”succinct”,”suck”,”sudden”,”suffer”,”sugar”,”suggest”,”suggestion”,”suit”,”sulky”,”summer”,”sun”,”super”,”superb”,”superficial”,”supply”,”support”,”suppose”,”supreme”,”surprise”,”surround”,”suspect”,”suspend”,”swanky”,”sweater”,”sweet”,”sweltering”,”swift”,”swim”,”swing”,”switch”,”symptomatic”,”synonymous”,”system”,”table”,”taboo”,”tacit”,”tacky”,”tail”,”talented”,”talk”,”tall”,”tame”,”tan”,”tangible”,”tangy”,”tank”,”tap”,”tart”,”taste”,”tasteful”,”tasteless”,”tasty”,”tawdry”,”tax”,”teaching”,”team”,”tearful”,”tease”,”tedious”,”teeny”,”teeny-tiny”,”teeth”,”telephone”,”telling”,”temper”,”temporary”,”tempt”,”ten”,”tendency”,”tender”,”tense”,”tent”,”tenuous”,”terrible”,”terrific”,”terrify”,”territory”,”test”,”tested”,”testy”,”texture”,”thank”,”thankful”,”thaw”,”theory”,”therapeutic”,”thick”,”thin”,”thing”,”things”,”thinkable”,”third”,”thirsty”,”thought”,”thoughtful”,”thoughtless”,”thread”,”threatening”,”three”,”thrill”,”throat”,”throne”,”thumb”,”thunder”,”thundering”,”tick”,”ticket”,”tickle”,”tidy”,”tie”,”tiger”,”tight”,”tightfisted”,”time”,”tin”,”tiny”,”tip”,”tire”,”tired”,”tiresome”,”title”,”toad”,”toe”,”toes”,”tomatoes”,”tongue”,”tooth”,”toothbrush”,”toothpaste”,”toothsome”,”top”,”torpid”,”touch”,”tough”,”tour”,”tow”,”towering”,”town”,”toy”,”toys”,”trace”,”trade”,”trail”,”train”,”trains”,”tramp”,”tranquil”,”transport”,”trap”,”trashy”,”travel”,”tray”,”treat”,”treatment”,”tree”,”trees”,”tremble”,”tremendous”,”trick”,”tricky”,”trip”,”trite”,”trot”,”trouble”,”troubled”,”trousers”,”truck”,”trucks”,”truculent”,”true”,”trust”,”truthful”,”try”,”tub”,”tug”,”tumble”,”turkey”,”turn”,”twig”,”twist”,”two”,”type”,”typical”,”ubiquitous”,”ugliest”,”ugly”,”ultra”,”umbrella”,”unable”,”unaccountable”,”unadvised”,”unarmed”,”unbecoming”,”unbiased”,”uncle”,”uncovered”,”understood”,”underwear”,”undesirable”,”undress”,”unequal”,”unequaled”,”uneven”,”unfasten”,”unhealthy”,”uninterested”,”unique”,”unit”,”unite”,”unkempt”,”unknown”,”unlock”,”unnatural”,”unpack”,”unruly”,”unsightly”,”unsuitable”,”untidy”,”unused”,”unusual”,”unwieldy”,”unwritten”,”upbeat”,”uppity”,”upset”,”uptight”,”use”,”used”,”useful”,”useless”,”utopian”,”utter”,”uttermost”,”vacation”,”vacuous”,”vagabond”,”vague”,”valuable”,”value”,”van”,”vanish”,”various”,”vase”,”vast”,”vegetable”,”veil”,”vein”,”vengeful”,”venomous”,”verdant”,”verse”,”versed”,”vessel”,”vest”,”victorious”,”view”,”vigorous”,”violent”,”violet”,”visit”,”visitor”,”vivacious”,”voice”,”voiceless”,”volatile”,”volcano”,”volleyball”,”voracious”,”voyage”,”vulgar”,”wacky”,”waggish”,”wail”,”wait”,”waiting”,”wakeful”,”walk”,”wall”,”wander”,”wandering”,”want”,”wanting”,”war”,”warlike”,”warm”,”warn”,”wary”,”wash”,”waste”,”wasteful”,”watch”,”water”,”watery”,”wave”,”waves”,”wax”,”way”,”weak”,”wealth”,”wealthy”,”weary”,”weather”,”week”,”weigh”,”weight”,”welcome”,”well-groomed”,”well-made”,”well-off”,”well-to-do”,”wet”,”wheel”,”whimsical”,”whine”,”whip”,”whirl”,”whisper”,”whispering”,”whistle”,”white”,”whole”,”wholesale”,”wicked”,”wide”,”wide-eyed”,”wiggly”,”wild”,”wilderness”,”willing”,”wind”,”window”,”windy”,”wine”,”wing”,”wink”,”winter”,”wipe”,”wire”,”wiry”,”wise”,”wish”,”wistful”,”witty”,”wobble”,”woebegone”,”woman”,”womanly”,”women”,”wonder”,”wonderful”,”wood”,”wooden”,”wool”,”woozy”,”word”,”work”,”workable”,”worm”,”worried”,”worry”,”worthless”,”wound”,”wrap”,”wrathful”,”wreck”,”wren”,”wrench”,”wrestle”,”wretched”,”wriggle”,”wrist”,”writer”,”writing”,”wrong”,”wry”,”x-ray”,”yak”,”yam”,”yard”,”yarn”,”yawn”,”year”,”yell”,”yellow”,”yielding”,”yoke”,”young”,”youthful”,”yummy”,”zany”,”zealous”,”zebra”,”zephyr”,”zesty”,”zinc”,”zip”,”zipper”,”zippy”,”zonked”,”zoo”,”zoom”]
    word = random.choice(words_to_guess)
    length = len(word)
    count = 0
    display = ‘_’ * length
    already_guessed = []
    play_game = “”

    # A loop to re-execute the game when the first round ends:

    def play_loop():
    global play_game
    play_game = input(“Do You want to play again? y = yes, n = no \n”)
    while play_game not in [“y”, “n”,”Y”,”N”]:
    play_game = input(“Do You want to play again? y = yes, n = no \n”)
    if play_game == “y”:
    main()
    elif play_game == “n”:
    print(“Thanks For Playing! We expect you back again!”)
    exit()

    # Initializing all the conditions required for the game:
    def hangman():
    global count
    global display
    global word
    global already_guessed
    global play_game
    limit = 5
    guess = input(“This is the Hangman Word: ” + display + ” Enter your guess: \n”)
    guess = guess.strip()
    if len(guess.strip()) == 0 or len(guess.strip()) >= 2 or guess <= "9":
    print("Invalid Input, Try a letter\n")
    hangman()

    elif guess in word:
    already_guessed.extend([guess])
    index = word.find(guess)
    wordnow = word[:index] + "_" + word[index + 1:]
    display = display[:index] + guess + display[index + 1:]
    print(display + "\n")

    elif guess in already_guessed:
    print("Try another letter.\n")

    else:
    count += 1

    if count == 1:
    time.sleep(1)
    print(" _____ \n"
    " | \n"
    " | \n"
    " | \n"
    " | \n"
    " | \n"
    " | \n"
    "__|__\n")
    print("Wrong guess. " + str(limit – count) + " guesses remaining\n")
    print ("You have guessed," + str(guess))

    elif count == 2:
    time.sleep(1)
    print(" _____ \n"
    " | | \n"
    " | |\n"
    " | \n"
    " | \n"
    " | \n"
    " | \n"
    "__|__\n")
    print("Wrong guess. " + str(limit – count) + " guesses remaining\n")
    print ("You have guessed," + str(guess))

    elif count == 3:
    time.sleep(1)
    print(" _____ \n"
    " | | \n"
    " | |\n"
    " | | \n"
    " | \n"
    " | \n"
    " | \n"
    "__|__\n")
    print("Wrong guess. " + str(limit – count) + " guesses remaining\n")
    print ("You have guessed," + str(guess))

    elif count == 4:
    time.sleep(1)
    print(" _____ \n"
    " | | \n"
    " | |\n"
    " | | \n"
    " | O \n"
    " | \n"
    " | \n"
    "__|__\n")
    print("Wrong guess. " + str(limit – count) + " last guess remaining\n")
    print ("You have guessed," + str(guess))

    elif count == 5:
    time.sleep(1)
    print(" _____ \n"
    " | | \n"
    " | |\n"
    " | | \n"
    " | O \n"
    " | /|\ \n"
    " | / \ \n"
    "__|__\n")
    print("Wrong guess. You are hanged!!!\n")
    print("The word was:" + str(word))
    play_loop()

    if word == '_' * length:
    print("Congrats! You have guessed the word correctly!")
    play_loop()

    elif count != limit:
    hangman()

    main()

    hangman()

Leave a Comment