Guest User

Untitled

a guest
Jan 23rd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. lista_par = []
  2. for i in range(20):
  3. if i%2 == 0:
  4. lista_par.append(i)
  5. print(lista_par)
Add Comment
Please, Sign In to add comment