Advertisement
Fhernd

iterar-multiples-secuencias.py

Jun 24th, 2018
1,383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 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))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement