0o11155
0o11155 is an octal literal used in several programming languages that employ a 0o prefix to denote base-8 numbers. The digits 1, 1, 1, 5, and 5 form the octal value 11155.
Converted to decimal, 0o11155 equals 4717. The calculation is 1×8^4 + 1×8^3 + 1×8^2 + 5×8^1 + 5×8^0 = 4096 + 512
Usage: The 0o prefix is used in Python 3 for octal literals and in several other languages
See also: Octal numeral system; Base prefixes in programming; Bitwise operations.