From d80d7f39cc7b2813e4b04a9517a43c471fc1b29f Mon Sep 17 00:00:00 2001 From: Shraggus <94532831+Shraggus@users.noreply.github.com> Date: Fri, 14 Oct 2022 23:37:07 +0530 Subject: [PATCH] Update wordguess.py --- scripts/Word Guessing Game/wordguess.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Word Guessing Game/wordguess.py b/scripts/Word Guessing Game/wordguess.py index c5245b5..9e3b17c 100644 --- a/scripts/Word Guessing Game/wordguess.py +++ b/scripts/Word Guessing Game/wordguess.py @@ -12,6 +12,7 @@ def main(): global length global playgame word = r.get_random_word() + # word = input("Enter custom word: ") finalword = word length = len(word) count = 0 @@ -60,4 +61,4 @@ def execute(): execute() main() -execute() \ No newline at end of file +execute()