Python Forum
really new to python want to know how to do a loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
really new to python want to know how to do a loop
#1
want it so when you ask a number that inset 7 it asks you again what your number is and it keeps repeating like this
print("Guess a number between 1 and 10:")
number = int(input())
if number == 7:
    print("You got it!")
elif number < 7:
    print("Higher")
else:
    print("Lower")
deanhystad write Sep-23-2024, 03:04 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply
#2
Have a look at while loop

A basic example

from random import randint


def random_number():
    return randint(1, 10)

number = random_number()
while True:
    print('Guess a number between 1 and 10')
    try:
        question = int(input('>> '))
    except ValueError:
        print('Please enter whole numbers only.')

    if question > number:
        print(f'{question} is too high.')
    elif question < number:
        print(f'{question} is too low.')
    else:
        print(f'Congradulations! You guessed {number}.')
        print('Would you like to play again? y/n')
        question = input('>> ').lower()
        if question == 'n':
            print('Goodbye!')
            break
        else:
            number = random_number()
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
while True:
    print("Guess a number between 1 and 10:")
    number = int(input())
    if number == 7:
        print("You got it!")
        break
    elif number < 7:
        print("Higher")
    else:
        print("Lower")
buran write Mar-10-2025, 09:49 AM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Reply
#4
If you use a while loop, the player will have unlimited guesses, unless you put some kind of counter in there.

You should use a for loop for the game and a while loop to repeat the game as many times as you wish. You can increase or decrease the number of guesses allowed.

Python range works like this: range(start, stop, step)

my_range = range(1, 21, 2)
my_range.start # returns 1
my_range.stop # returns 21
my_range.step # returns 2
my_range.index(17) # returns 8
my_range.index(18) # produces an error because 18 is not in my_range
"""
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: 18 is not in range """
These 2 for loops both produce the same result:

for i in myrange:
    print(i)

for i in range(1, 21, 2):
              print(i)
Output:
1 3 5 7 9 11 13 15 17 19
randint(1,10) may turn out any of the numbers 1,2,3,4,5,6,7,8,9,10 which is a bit unusual in Python, because often the last number is not included, for example in a for loop.

Using a while loop to loop over games and a for loop to play the game:

from random import randint

# function to play the game
def gnum(num):
    print('The number to guess is somewhere in the range 1 to 10, inclusive.')
    print('You have 4 guesses. If you do not guess the number, you will receive an electric shock!')
    print('Resistance is useless, as is insulation!')
    print('Let the challenge begin ... ')
    for i in range(0,4):
        print(f'This is guess number {i+1} from a total of 4 guesses ... ')
        #print(f'num = {num}.')
        # the problem here is, when the input is not an integer, you will get an error
        # think of a way to check that!
        guess = int(input('Enter a number from 1 to 10. '))
        if guess == num:
            print('You guessed right! No electric shock for you!')
            return
        elif guess < num:
            print(f'Your guess {guess} is too low.')
        elif guess > num:
            print(f'Your guess {guess} is too high.')
    print('O-oh! Get ready for 40 000 volts of taser!')

answer = 'x'
# keep playing the game until q is entered
while not answer == 'q':
    answer = input('Enter anything, except q, to play. Enter q to quit. ')
    if answer == 'q':
        break
    else:
        num = randint(1, 10)
        # if you want to see the number to be guessed
        #print(f'num = {num}.')
        gnum(num)
Shocking!
Reply
#5
(Mar-08-2025, 07:57 AM)Pedroski55 Wrote: If you use a while loop, the player will have unlimited guesses, unless you put some kind of counter in there
No,or you right if user🥴 don't follow hint lower or higher at all.
The point is that user shall do a binary search strategy also name divide and conquer.
So if number is 100 users shall be able to find number in 7 tries max,if follow this strategy.
import random

print("Guess a number between 1 and 100:")
secret_number = random.randint(1, 100)
while True:
    number = int(input())
    if number == secret_number:
        print("You got it!")
        break
    elif number < secret_number:
        print("Higher")
    else:
        print("Lower")

Here max 7.
Output:
Guess a number between 1 and 100: 50 Lower 25 Higher 37 Lower 31 Higher 35 Lower 34 Lower 33 You got it!
Of if more lucky it will be less that 7.
Output:
Guess a number between 1 and 100: 50 Lower 25 Lower 13 Lower 6 Higher 9 You got it!
Reply
#6
You are right!

Using my psychic powers, I got it in 5!

import random
 
print("Guess a number between 1 and 1000:")
secret_number = random.randint(1, 1000)
while True:
    number = int(input("输入个数字 "))
    if number == secret_number:
        print("You got it!")
        break
    elif number < secret_number:
        print("Higher")
    else:
        print("Lower")
Output:
输入个数字 500 Lower 输入个数字 250 Higher 输入个数字 375 Higher 输入个数字 435 Lower 输入个数字 400 You got it!
Not sure how that changes as the maximum number gets bigger! Doing it my way, I would have got an electric shock!
Reply
#7
(Mar-09-2025, 07:51 AM)Pedroski55 Wrote: Not sure how that changes as the maximum number gets bigger
For 1000 the max tries would be 10 if use optimal binary search strategy.
Can make it better to make a function that take arguments,then is easier to change input.
Eg for 5000 max tries would be 13
import random

def guess_number_game(max_numb, max_tries):
    print(f"Guessing the number between 1 and {max_numb}.")
    secret_number = random.randint(1, max_numb)
    guess, tries = 0, 0
    while guess != secret_number:
        guess = int(input("Take a guess: "))
        tries += 1
        if tries > max_tries:
            print(f"Used {tries} tries,max allowed for {max_numb} is {max_tries}. Game over!")
            print('Hint use a binary search strategy')
            print(f"The number was {secret_number}.")
            return
        if guess > secret_number:
            print("Lower")
        elif guess < secret_number:
            print("Higher")
    print(f'You guessed it! The number was {guess} in {tries} tries')

if __name__ == '__main__':
    max_numb = 5000
    max_tries = 13
    guess_number_game(max_numb, max_tries)
Output:
Guessing the number between 1 and 5000. Take a guess: 2500 Higher Take a guess: 3750 Higher Take a guess: 4200 Higher Take a guess: 4500 Lower Take a guess: 4300 Higher Take a guess: 4400 Lower Take a guess: 4350 You guessed it! The number was 4350 in 7 tries
Reply


Forum Jump:

User Panel Messages

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