Comprendre un morceau de code python
Bonjour,
je souhaiterais comprendre ce que fait cette boucle, comment s'y prendre ?
Si vous voulez d'autres morceaux du programme je peux le poster.
Comment faire pour comprendre cela ?
Merci bien
Code:
1 2 3 4 5 6 7 8 9 10
| def Pin_init_affichage(att): #Handeling of the process that take care of the led system on the front side
t=0
print("############### Pin order ############### ")
for t in range (0,5):
temp = att
if (att>9):
temp = ((i % 100) // 10) + 9
print("In led list get the x th --------> "+str (temp))
print(Main_List[temp][t]) |