Skip to content

Instantly share code, notes, and snippets.

@nurnoch
Created March 8, 2016 02:07
Show Gist options
  • Save nurnoch/2649669679ab9b6e2f31 to your computer and use it in GitHub Desktop.
Save nurnoch/2649669679ab9b6e2f31 to your computer and use it in GitHub Desktop.
字符串前面补0
n = "123"
s = n.zfill(5)
assert s == "00123"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment