Copyright (c) Hyperion Entertainment and contributors.
AmigaOS Manual: Python Functions
Contents
- 1 Built-in Functions Reference
- 1.1 __import__
- 1.2 abs()
- 1.3 all
- 1.4 any
- 1.5 ascii
- 1.6 bin
- 1.7 bool
- 1.8 breakpoint
- 1.9 bytearray
- 1.10 bytes
- 1.11 callable
- 1.12 chr
- 1.13 classmethod
- 1.14 compile
- 1.15 complex
- 1.16 delattr
- 1.17 dict
- 1.18 dir
- 1.19 divmod
- 1.20 enumerate
- 1.21 eval
- 1.22 exec
- 1.23 filter
- 1.24 float
- 1.25 format
- 1.26 frozenset
- 1.27 getattr
- 1.28 globals
- 1.29 hasattr
- 1.30 hash
- 1.31 help
- 1.32 hex
- 1.33 id
- 1.34 input
- 1.35 int
- 1.36 isinstance
- 1.37 issubclass
- 1.38 iter
- 1.39 len
- 1.40 list
- 1.41 locals
- 1.42 map
- 1.43 max
- 1.44 memoryview
- 1.45 min
- 1.46 next
- 1.47 object
- 1.48 oct
- 1.49 open
- 1.50 ord
- 1.51 pow
- 1.52 print
- 1.53 property
- 1.54 range
- 1.55 repr
- 1.56 reversed
- 1.57 round
- 1.58 set
- 1.59 setattr
- 1.60 slice
- 1.61 sorted
- 1.62 staticmethod
- 1.63 str
- 1.64 sum
- 1.65 super
- 1.66 tuple
- 1.67 type
- 1.68 vars
- 1.69 zip
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.