Number formats
Underscores can be added to numbers for clarity. For example,
1000000
can be tricky to read quickly, while
1_000_000
can be easier.
アンダースコアは、わかりやすくするために数字に加えることができます。例えば、1000000
は素早く読むのが難しいですが、1_000_000
は読みやすいです。
Ints can be written in binary, octal, or hexadecimal formats using the
0b
, 0o
, and 0x
prefixes respectively.
整数は 2 進数、8 進数、16 進数で書くことができ、それぞれ 0b
, 0o
, 0x
という接頭辞を使います。
Floats can be written in a scientific notation.
浮動小数点数は科学表記で書くことができます。