Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. x_puntos = [2, 3, 5, 7, 11]
  2. y_puntos = [4, 6, 8, 9, 10]
  3.  
  4. for x, y in zip(x_puntos, y_puntos):
  5. print('Punto: ({}, {})'.format(x, y))
Add Comment
Please, Sign In to add comment