17.14 Built-In Functions
300
17.14.2 all(iterable)
304
17.14.3 any(iterable)
305
17.14.4 ascii(object)
305
17.14.7 bytearray([source, encoding, errors])
306
17.14.8 bytes([source, encoding, errors])
307
17.14.10 complex([real, imag])
307
17.14.11 dict([source])
308
17.14.12 divmod(a, b)
309
17.14.13 enumerate(iterable, [start])
309
17.14.14 eval(expression, [globals, locals])
309
17.14.15 exec(object, [globals, locals])
310
17.14.16 filter(function, iterable)
310
17.14.18 format(value, [format_spec])
311
17.14.19 frozenset([iterable])
311
17.14.21 hash(object)
312
17.14.22 help([object])
313
17.14.25 input([prompt])
314
17.14.26 int([x, base])
314
17.14.28 list([sequence])
315
17.14.30 map(function, [*iterable])
316
17.14.31 max(iterable, {default, key}), max(arg1, arg2, [*args], {key})
317
17.14.32 min(iterable, {default, key}), min(arg1, arg2, [*args], {key})
318
17.14.35 pow(x, y, [z])
318
17.14.36 print([*objects], {sep, end, file, flush})
318
17.14.37 range([start], stop, [step])
319
17.14.38 repr(object)
320
17.14.39 reversed(sequence)
320
17.14.40 round(x, [n])
321
17.14.41 set([iterable])
321
17.14.42 sorted(iterable, [key, reverse])
321
17.14.43 str([object, encoding, errors])
322
17.14.44 sum(iterable, [start])
323
17.14.45 tuple([iterable])
323
17.14.46 type(object)
323
17.14.47 zip([*iterables], {strict})
324