partie2_ex56_2.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

220 Bytes


from random import randint

def lancer_2():
    n = 1
    a = randint(1, 6)
    b = randint(1, 6)
    while a != b:
        n = n + 1
        a = randint(1, 6)
        b = randint(1, 6)
    return n