Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
while sentence
#4
You want to play "guess the number"?

Copy and paste this into your Python shell, then write: myApp() in the shell

def myApp():
    import random

    print('What shall the maximum number be?')
    maxNum = int(input('Enter the maximum number ... '))

    hads= random.randint(1,maxNum)
    
    my_guess = int(input('Enter a number to guess the number "hads" ... '))

    if my_guess == hads:
        print("You guessed the number first time!! You are a psychic!!")    
        print('Your guess was:', my_guess)
        exit
    elif my_guess != hads:
        print('Wrong! Try again!')
        
    while my_guess != hads:
        my_guess = int(input('Enter a number ... '))
        if my_guess == hads:
            print("You guessed the number!! Byebye!")    
            print(my_guess)            
        elif my_guess > hads:
            print('You guessed too high!')
        elif my_guess < hads:
            print('You guessed too low!')
Reply


Messages In This Thread
while sentence - by kimyyya - Mar-19-2021, 07:34 PM
RE: while sentence - by deanhystad - Mar-19-2021, 07:54 PM
RE: while sentence - by nilamo - Mar-19-2021, 09:57 PM
RE: while sentence - by Pedroski55 - Mar-20-2021, 06:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List / arrays putting in sentence Kurta 3 2,653 Dec-25-2020, 11:29 AM
Last Post: Larz60+
  How to make a telegram bot respond to the specific word in a sentence? Metodolog 2 6,470 Dec-22-2020, 07:30 AM
Last Post: martabassof
  How to match partial sentence in long sentence Mekala 1 1,577 Jul-22-2020, 02:21 PM
Last Post: perfringo
  Remove a sentence if it contains a word. lokhtar 6 6,113 Feb-11-2020, 04:43 PM
Last Post: stullis
  Regex Help for clubbing similar sentence segments regstuff 3 2,212 Nov-20-2019, 06:46 AM
Last Post: perfringo
  how to get all the possible permutation and combination of a sentence in python sodmzs 1 4,243 Jun-13-2019, 07:02 AM
Last Post: perfringo
  Sentence maker help bidoofis 2 2,558 Feb-08-2019, 03:59 AM
Last Post: bidoofis
  wont print last sentence.. mitmit293 2 2,461 Jan-27-2019, 05:38 PM
Last Post: aakashjha001
  Generating all simple sentence possibilities Max_77 3 2,877 Oct-10-2018, 11:35 AM
Last Post: Max_77
  PigLatin Sentence Translator Help 2skywalkers 7 5,965 Jun-23-2018, 12:46 AM
Last Post: 2skywalkers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020