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. x = 1 x 1 max(1,2,3,4,5,6,7) 7 max(1) Traceback (most recent call last): File "", line 1, in max(1) TypeError: 'int' object is not iterable max(1,2) 2 >>> round(14.4) 14 >>> round(14.6) 15 >>> floor(14.4) Traceback (most recent call last): File "", line 1, in floor(14.4) NameError: name 'floor' is not defined. Did you mean: 'float'? >>> import math >>> math.floor(14,4) Traceback (most recent call last): File "", line 1, in math.floor(14,4) TypeError: math.floor() takes exactly one argument (2 given) >>> math.floor(14.4) 14 >>> math.floor(14.7) 14 >>> round(14.7) 15 >>> a = 1 >>> b = 2 >>> a + b * 4 9 >>> a_cat = 'Gigi' >>> __a_cat__ = 'Jack' # no no >>> math.__name__ 'math'