Copyright (c) Hyperion Entertainment and contributors.
AmigaOS Manual: Python Functions: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Added list of built-in functions |
|||
| Line 2: | Line 2: | ||
== __import__ == |
== __import__ == |
||
== abs == |
== abs() == |
||
<nowiki>abs(number)</nowiki> |
|||
Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is a complex number, its magnitude is returned. |
|||
== all == |
== all == |
||
== any == |
== any == |
||
Revision as of 12:50, 15 July 2018
Built-in Functions Reference
__import__
abs()
abs(number)
Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is a complex number, its magnitude is returned.