Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created May 20, 2016 18:23
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 chuck0523/693a7537361017d82b71e046a74a981c to your computer and use it in GitHub Desktop.
Save chuck0523/693a7537361017d82b71e046a74a981c to your computer and use it in GitHub Desktop.
num = 10
# %
print("%d" % num) # 10
print("%2d" % num) # 10
print("%3d" % num) # 10
print("%02d" % num) # 10
print("%03d" % num) # 010
# format
print("{0:d}".format(num)) # 10
print("{0:2d}".format(num)) # 10
print("{0:3d}".format(num)) # 10
print("{0:02d}".format(num)) # 10
print("{0:03d}".format(num)) # 010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment