Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created April 21, 2018 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/a819951717b6dab6c267aa6b6de5b3c3 to your computer and use it in GitHub Desktop.
Save Fhernd/a819951717b6dab6c267aa6b6de5b3c3 to your computer and use it in GitHub Desktop.
Alineación de texto. OrtizOL.
texto = 'OrtizOL'
print(texto.ljust(20))
print(texto.rjust(20))
print(texto.center(20))
print('')
print(texto.ljust(20, '*'))
print(texto.rjust(20, '*'))
print(texto.center(20, '*'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment