Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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))