# ecrire un programme qui permet de saisir 4 choix pour  pour allumer led1 ou Led2

from machine import Pin
Led1= Pin(22,Pin.OUT)
Led2= Pin(27,Pin.OUT)
for F in range(4):
    choix=int(input("Donner le numéro de Led à allumer 1 ou 2 "))
    if choix==1 :
        Led1.on()
        Led2.off()
    elif choix== 2:
        Led1.off()
        Led2.on()
    else:
        Led1.off()
        Led2.off()
$abcdeabcde151015202530354045505560fghijfghij