79498806

Date: 2025-03-10 18:11:32
Score: 7.5 🚩
Natty:
Report link

# my code
import random
from threading import Thread
import time
import os
from inputimeout import inputimeout, TimeoutOccurred

# todo inputs
b = input("press enter to start")

lowest_numb = input("lowest number")

highish_numb = input("highish_numb")

time_for_qus = int(input("time for question"))

print(type(time_for_qus))


def ask_question():
    ran_1 = random.randint(int(lowest_numb), int(highish_numb))
    ran_2 = random.randint(int(lowest_numb), int(highish_numb))
    print(f"{ran_1}x{ran_2}", end="")
    try:
        answer = inputimeout("", time_for_qus)
    except TimeoutOccurred:
        print("Times up!!!")
        ask_question()


ask_question()

my goal is to make a multiplication game, but i am having trouble canceling the input function

can you help?

PS. please respond

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (2): i am having trouble
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29961513