import random def random_number(): number = random.randint(10, 100) print(f'Random number between 10 and 100: {number}') random_number()