Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
cumulating results
#3
Idea thanks for the guide bowlofred; i came out with this:
Could it be better? Think

import time
import random
points = 0
while True :
    multi_value = random.randint(1, 5)
    input_value = random.randint(2, 12)
    multi_value_select = int(multi_value)
    input_value_select = int(input_value)
    print('what is,', multi_value_select, 'x', input_value_select,'?','....')
    correct_answer= int(multi_value_select * input_value_select)
    answer=input('Answer = :', )
    if correct_answer > 30:
        points_value=3
    elif correct_answer <30:
        points_value=2
    if int(answer) == int(correct_answer):
        time.sleep(1)
        print('CORRECT :', int(points_value),'pts')
        Total_points = points + points_value
        print('Total pts:',Total_points)
        points= Total_points
    else:
        time.sleep(1)
        print('WRONG ANSWER')
Reply


Messages In This Thread
cumulating results - by awasnipi - Sep-09-2020, 02:27 AM
RE: cumulating results - by bowlofred - Sep-09-2020, 03:03 AM
RE: cumulating results - by awasnipi - Sep-09-2020, 06:30 AM
RE: cumulating results - by bowlofred - Sep-09-2020, 06:47 AM
RE: cumulating results - by awasnipi - Sep-09-2020, 10:55 PM
RE: cumulating results - by micseydel - Sep-09-2020, 11:11 PM
RE: cumulating results - by awasnipi - Sep-10-2020, 02:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Search Results Web results Printing the number of days in a given month and year afefDXCTN 1 2,367 Aug-21-2020, 12:20 PM
Last Post: DeaD_EyE
  How to append one function1 results to function2 results SriRajesh 5 3,366 Jan-02-2020, 12:11 PM
Last Post: Killertjuh

Forum Jump:

User Panel Messages

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