Advertisement
teslariu

while

Sep 21st, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # 1 condicional (if-else) 2 bucles (while y for)
  5.  
  6. """
  7. numero = 3
  8.  
  9. while numero < 10:
  10.     print(numero)
  11.     numero = numero + 1
  12.  
  13. print("Afuera del while")
  14. """
  15. # Hacer un script para imprimir una lista (cada elemento en forma vertical)
  16.  
  17. lista = ['Ana', 'Luisa', 'Alberto', 'Roque', 'Teresa']
  18. print(lista)
  19.  
  20.  
  21. i = 0
  22. while i < len(lista):
  23.     print(lista[i])
  24.     i = i + 1
  25.  
  26. i = 0
  27. while i < len(lista):
  28.     print(lista[i], end=" ")
  29.     i = i + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement