Skip to content

Instantly share code, notes, and snippets.

@mangar
Created October 31, 2008 10:59
Show Gist options
  • Save mangar/21279 to your computer and use it in GitHub Desktop.
Save mangar/21279 to your computer and use it in GitHub Desktop.
Zeros a direita....
Zeros a esquerda...
c = "3"
c.rjust(3, "0")
"003"
ou
"%.3i"%3
Zeros a direita....
c = "3"
c.ljust(3, "0")
"300"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment