File size: 344 Bytes
790a22c
 
8ea1d70
6553c50
790a22c
6553c50
790a22c
6553c50
790a22c
8ea1d70
6553c50
 
 
790a22c
8ea1d70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import random


def generate_hint(start, step, difficulty):
    hints = [
        f"What number is greater than {start} and less than {start + 2 * step}?"
    ]
    hint = random.choice(hints)

    output = {
        "text": hint,
        'difficulty': difficulty,
        "question_numbers": [start, step, start + step]
    }
    return output