3
format_spec ::= [[fill]align][sign][#][0][width][,][.precision][type]
fill ::= <any character>
align ::= "<" | ">" | "=" | "^"
sign ::= "+" | "-" | " "
width ::= integer
precision ::= integer
type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
文法は本当に私を混乱しました。私はバイナリ表現 にint型を変換したい場合は
例えば、私が行うことができます。この
"{0:b}".format(100)
"{:b}".format(100) # but this is fine too, so what dose the 0 do?
私はb
仕様でtype
一部を表していることを知っているが、私はの役割を把握することはできません0
と:
、彼らは何をしていますか?あなたが唯一のformat_spec
のための文法を見ている
https://pyformat.info/を参照してください。 – bigbounty