Quick actions

cmd+k|ctrl+k

Navigation

Languages

Math Functions

Snippet info

Language

Python

Visibility

public

Author

kofipsmarte

Created

2026-03-13T02:37:55.171876Z

Updated

2026-03-13T03:07:48.024753Z

# Math functions
round(3.67)
print(round(3.67))
print(abs(-20))
print(pow(2, 4))
print(min(3, 5))
print(max(3, 5))
INFO