DEV Community

Netsai
Netsai

Posted on

1

Let's create a secret word game with python to understand the use of "if and while statements"!

secret_word = "Whileloop"
guess =""
guess_count = 0
guess_limit = 3
out_of_guesses = False

while guess != secret_word and not out_of_guesses:
    if guess_count < guess_limit:
        guess = input("Enter your word: ")
        guess_count += 1
    else:
        out_of_guesses = True
if out_of_guesses:
    print("out of Guesses, You looooooose the game 🫠")
else:
    print("You winπŸŽ‰πŸŽ‰")
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up