Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
import
re
texto
=
'
\t
OrtizOL Blog
\n
'
print
(
texto.
strip
(
)
)
print
(
texto.
lstrip
(
)
)
print
(
texto.
rstrip
(
)
)
print
(
texto.
replace
(
' '
,
''
)
)
print
(
re
.
sub
(
'
\s
+'
,
' '
,
texto
)
)