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. [DEBUG ON] = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 [DEBUG ON] = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 [DEBUG ON] [DEBUG OFF] = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 [DEBUG ON] = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 3 [DEBUG ON] = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 = RESTART: C:\CS1_F25\website\demo\debug_ex1.py 1 [DEBUG OFF] a = 11 x = True >>> print(x) True >>> s = 'hello' >>> s.upper() 'HELLO' >>> x = 15 >>> print(x) 15 >>> >>> y = 16 >>> id(y) 140726140499336 >>> id(y) ... 140726140499336 SyntaxError: multiple statements found while compiling a single statement >>> hex(id(y)) '0x7ffd5b9d7588' >>> a = 'hello' >>> 10 % 3 1 >>> 11 % 3 2 >>> 12 % 3 0 >>> 10 / 3 3.3333333333333335 >>> 10 // 3 3 >>> 11 // 3 3 >>> 12 // 3 4