Gulshan Negi

Gulshan Negi

Software Developer
6 points
All activity
Gulshan Negi
Gulshan Negi
started a discussion

Python Hangman Program Error

Hello this is Gulshan Negi Well, I am writing a program for making Hangman Game using Python but it shows some error at the time of execution, I don't know what I am missing. Source Code: import random import time import os def play_again(): question = 'Do You want to play again? y = yes, n = no \n' play_game = input(question) while play_game.lower() not in ['y', 'n']: play_game...