Skip to content

Commit a30886d

Browse files
committed
Updating the Project
1 parent a30d428 commit a30886d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Project 3 - Hungman Game/main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
wordList = fruitList + animalList
1414
word = random.choice(wordList)
1515
category = word_Category[word]
16-
print(word)
16+
1717
if __name__ == '__main__':
1818
print(f'Guess the word! : Hint - Category {category}')
1919

@@ -29,6 +29,7 @@
2929
try:
3030
while(rounds and flag == 0):
3131
guess = input("Inter a letter : ")
32+
3233
if not guess.isalpha:
3334
print("Only Alhpabetic Character Allowed")
3435
if len(guess) != 1:

0 commit comments

Comments
 (0)