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.
출처
'Parametric Design > 21. Python 툴팁' 카테고리의 다른 글
Loop Mechanisms in Python (0) | 2015.06.13 |
---|---|
More Syntax, Keywords, Functions, Variable Scope (0) | 2015.06.13 |
Operator precedence (0) | 2015.06.13 |
Capitalization, Indentation, String Splicing (0) | 2015.06.13 |
[기초] Python in operator와 Advance S (0) | 2015.06.13 |