Advertisement
Sergio_Istea

while

May 15th, 2023
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. # Cuantos elementos hay?
  3.  
  4. cantidad_elementos = len(lista)
  5.  
  6.  
  7. # Desde donde se comienza?
  8.  
  9. indice = 0
  10.  
  11. # En que indice termina?
  12.  
  13. # el valor de 'cantidad_elementos - 1'
  14.  
  15.  
  16. #while 'mientras que indice sea menor a cantidad de elementos':
  17.  
  18. while indice < cantidad_elementos:
  19.  
  20. print(lista[indice])
  21.  
  22. indice += 1
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement