0o205
0o205 is a numeric representation in octal notation, a base-8 numeral system. The prefix 0o indicates that the digits that follow are to be interpreted as octal digits (0 through 7).
In octal, the value 0o205 equals 2×8^2 + 0×8^1 + 5×8^0, which is 133 in decimal. This value
In programming languages, 0o205 is a literal that explicitly denotes an octal number. Python 3 uses the
Notable properties include that 0o205 is a valid octal literal only because the digits 2, 0, and
See also: octal numeral system, numeric literals, Python (programming language).