Advertisement
GastonPalazzo

Bucles_1 - Ej-1

Aug 31st, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. #main
  2. print('\n|Ej 1|')
  3.  
  4. listaDeNumeros=[0 for x in range(11)]
  5.  
  6. for i in range(len(listaDeNumeros)):
  7.     listaDeNumeros[i]=i
  8.  
  9. print(f'\nLista de numeros -> {listaDeNumeros}')
  10.  
  11. print('\nFin de la ejecucion!\n')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement