Python Forum
same number everytime when using random.randint
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
same number everytime when using random.randint
#1
Every time I run this the random number to print out win is 3. Any help with this would be greatly appreciated!

import random
from random import randint
print("hi")
luck = random.randint(1, 3)
print(luck)
loto = (int(input("Pick a number from 1 to 3: ")))
while "luck" != "loto":
    if loto > 0 and loto < 3:
        print("closey")
        luck = random.randint(1, 3)
        loto = (int(input("Pick a number from 1 to 3: ")))
    elif loto <= 0 or loto > 3:
        print("Not closey")
        luck = random.randint(1, 3)
        loto = (int(input("NOOOOOPick a number from 1 to 3: ")))
    else:
        for i in range(8):
            print("WIN" * 10)
        break
Reply


Messages In This Thread
same number everytime when using random.randint - by summeringpainting - Aug-23-2019, 03:31 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  random numbers, randint janeik 2 577 Nov-27-2023, 05:17 PM
Last Post: janeik
  Unexpected output while using random.randint with def terickson2367 1 522 Oct-24-2023, 05:56 AM
Last Post: buran
  find random numbers that are = to the first 2 number of a list. Frankduc 23 3,260 Apr-05-2023, 07:36 PM
Last Post: Frankduc
  matrix number assignement to the random indices juniorcoder 4 1,942 Feb-19-2022, 02:18 PM
Last Post: juniorcoder
Sad Iterate randint() multiple times when calling a function Jake123 2 2,067 Feb-15-2022, 10:56 PM
Last Post: deanhystad
  Generate random hex number ZYSIA 1 11,636 Jul-16-2021, 09:21 AM
Last Post: DeaD_EyE
  Using Dictionary to Test Evenness of Distribution Generated by Randint Function new_coder_231013 6 3,308 Feb-23-2021, 01:29 PM
Last Post: new_coder_231013
  Random Number Repeating Tzenesh 5 4,063 Jan-13-2021, 10:00 PM
Last Post: deanhystad
  Random number generator charlottelol 5 3,250 Nov-10-2020, 10:51 PM
Last Post: deanhystad
  Help with a random.randint choice in Python booponion 5 2,820 Oct-23-2020, 05:13 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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