File: numbers.txt

package info (click to toggle)
highlight.js 10.7.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,332 kB
  • sloc: javascript: 41,059; makefile: 157; python: 29; sh: 20
file content (14 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
integer = 1234
big_integer = 1_234_000
neg_integer = -20_000
float = 2.34
sci_float = 2.4e23
plus_sci_float = 2.4e+23
small_sci_float = 2.4e-23
cap_sci_float = 2.4E23
binary = 0b1010
strange_binary = 0b1010_1010_1010
octal = 0o777
strange_octal = 0o777_666_555
hex = 0x1ABEF
strange_hex = 0x1234_FACE_987D