+ 1
Why am I getting out put "Hello world", when I am typing"print("\110\145\154\154\157\40\127\157\162\154\144\41")"
2 Answers
+ 3
Each escaped number represents an octal (base 8) number. Convert the number to decimal, and you get the ASCII value of each character in string "Hello world!".
0
really?