Python Forum
Repeat question (for loop)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Repeat question (for loop)
#1
Trying to make a small program where a user can answer basic questions (1+1 etc). But the questions should be random, in my code, no random numbers are generated. Is the for loop in wrong place?

import random

from random import randrange



x = random.randrange(0, 101)

y = random.randrange(0, 101)

sum = (x + y)

for sum in range(1, 5):

	a = int(input(f'What is {x} + {y}? '))

if a == sum:
    	print('Correct')

else:
    	print(f'Not correct, the correct answer is {sum}.')
Reply


Messages In This Thread
Repeat question (for loop) - by rs74 - Jun-17-2020, 12:16 PM
RE: Repeat question (for loop) - by GOTO10 - Jun-17-2020, 12:37 PM
RE: Repeat question (for loop) - by buran - Jun-17-2020, 12:44 PM
RE: Repeat question (for loop) - by rs74 - Jun-17-2020, 12:53 PM
RE: Repeat question (for loop) - by rs74 - Jun-17-2020, 02:41 PM
RE: Repeat question (for loop) - by buran - Jun-17-2020, 03:03 PM
RE: Repeat question (for loop) - by Marbelous - Jun-17-2020, 03:06 PM
RE: Repeat question (for loop) - by rs74 - Jun-17-2020, 03:17 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Many iterations for loop question adesimone 9 1,878 Nov-12-2022, 07:08 PM
Last Post: deanhystad
  Please check whether the code about the for loop question is correct. (SyntaxError) lilliancsk01 10 2,635 Nov-08-2022, 01:25 PM
Last Post: deanhystad
  Beginner Python Question: FIzz Buzz using while loop camoyn13 2 1,844 Sep-20-2022, 09:00 AM
Last Post: deanhystad
  Repeat keywords at end of every line knob 4 2,332 Sep-15-2020, 06:38 AM
Last Post: perfringo
  Question about running comparisons through loop from input value Sunioj 2 2,422 Oct-15-2019, 03:15 PM
Last Post: jefsummers
  How to repeat input line of code until condition is met Reta 2 3,409 May-14-2019, 10:06 PM
Last Post: nilamo
  while loop question Tripler 4 2,979 Jul-24-2018, 06:37 AM
Last Post: buran
  Loop question kraven 3 3,655 Sep-10-2017, 07:31 AM
Last Post: wavic
  Question about loop Pires 4 3,602 Jul-23-2017, 03:01 AM
Last Post: Pires
  Udacity while loop question liquidmetalrob 6 5,396 Jul-21-2017, 02:56 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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