Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
x_puntos
=
[
2
,
3
,
5
,
7
,
11
]
y_puntos
=
[
4
,
6
,
8
,
9
,
10
]
for
x
,
y
in
zip
(
x_puntos
,
y_puntos
)
:
print
(
'Punto: ({}, {})'
.
format
(
x
,
y
)
)