Python 3.13.6 (tags/v3.13.6:4e66535, Aug 6 2025, 14:36:00) [MSC v.1944 64 bit (AMD64)] on win32 Enter "help" below or click "Help" above for more information. 15// 4 3 15 % 4 3 >>> 17 % 4 1 >>> 25 ** 2 625 >>> 757943 ** 12 35945005674597934282333239291663648125989256541016641779653072564140001 >>> a = 20 >>> b = 3 >>> type(a * b) >>> type(a / b) >>> 0.1 + 0.57 0.6699999999999999 >>> print("hello\n\n\nworld.\t\tBye") hello world. Bye >>> print("hello, "hey" world") SyntaxError: invalid syntax. Perhaps you forgot a comma? >>> print("hello, \"hey\" world") hello, "hey" world >>> print("hello, \"hey\" \\ world") hello, "hey" \ world >>> print("hello, \"hey\" \\\ world") hello, "hey" \\ world >>> print("hello, \"hey\" \\\\ world") hello, "hey" \\ world >>> [10,20,30][1] 20