Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
sumar
=
lambda
x
,
y: x + y
print
(
sumar
(
2
,
3
)
)
print
(
sumar
(
5
,
2
)
)
nombres
=
[
'Edward Ortiz'
,
'Jaela Meneses'
,
'Juan Urbano'
,
'Oliva OrdoƱez'
]
print
(
sorted
(
nombres
,
key
=
lambda
nombre: nombre.
split
(
)
[
-
1
]
.
lower
(
)
)
)