0o1470
0o1470 is a numeric literal written in octal notation, using the 0o prefix to indicate base-8. In languages that adopt this convention, such as Python 3 and modern JavaScript (ES6 and later), the digits that follow must be in the range 0 through 7.
As an octal number, 0o1470 represents a decimal value of 824. This is calculated as 1 ×
Usage and context: In Python 3, 0o1470 would be interpreted as an octal literal. In Python 2,