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()