新版本的变更 / Python 3.0

# *** before: ***
octal = 042
# octal is 34

# *** in version 3: ***
octal = 0o42
# octal is 34

print(octal)