Fonction Python pour imprimer un nombre aléatoire

import random
n = random.randint(0,22)
print(n)
Stupid Stoat