Parametric Design /21. Python 툴팁
Built-in Functions in Python
Parametric Culture
2015. 6. 14. 01:37
Built-in Functions in Python
The Python interpreter has a number of functions built into it that are always available. They are listed here in alphabetical order.
In addition, there are other four built-in functions that are no longer considered essential: apply(), buffer(), coerce(), and intern(). They are documented in the Non-essential Built-in Functions section.
- abs(x)
Return the absolute value of a number. The argument may be a plain or long integer or a floating point number. If the argument is a complex number, its magnitude is returned.
출처