79504042

Date: 2025-03-12 15:26:28
Score: 7.5 🚩
Natty: 4
Report link

I am trying to stop inputtimeout in pycharm but i don't know how can you help?

my code is:

import random
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"))

num_qus = int(input("How many questions?"))

print(type(time_for_qus))


def ask_question(num_qus=num_qus):
    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)
        num_qus -= 1
    except TimeoutOccurred:
        print("Times up!!!")
        ask_question(num_qus)
        if num_qus == 0:
            quit()


ask_question(num_qus)

Please help

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (3): can you help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29961513