"""TABLES DE MULTIPLICATIONS""" from random import * R=int(1) score=int(0) while R<=10:#Boucle pour recommencer 10 fois a=randint(1,10) b=randint(1,10) print(a,"X",b,"=",end=' ') N=input() N=int(N) if N==a*b: score=score+1 print("Juste !") print() else : print("Erreur!") print() R=R+1 print("Ton score est: ",score,"/10")