print(min(5, 12, 3)) # 3 print(max(5, 12, 3)) # 12 print(abs(-7.4)) # 7.4 print(pow(2, 5)) # 32 (same as 2 ** 5) print(round(3.14159, 2)) # 3.14
Click Run to execute this code.