10: Et Cetera Flashcards
1
Q
docs.python.org
A
2
Q
docs.python.org/3/tutorial
A
3
Q
docs.python.org/3/library
A
4
Q
docs.python.org/3/reference
A
5
Q
docs.python.org/3/howto
A
6
Q
set
A
7
Q
docs.python.org/3/library/stdtypes.html#set
A
8
Q
global
A
9
Q
constants
A
10
Q
type hints
A
11
Q
docs.python.org/3/library/typing.html
A
12
Q
mypy
A
13
Q
pip install mypy
A
14
Q
mypy.readthedocs.io
A
15
Q
docstrings
A
16
Q
peps.python.org/pep-0257
A
17
Q
argparse
A
18
Q
docs.python.org/3/library/argparse.html
A
19
Q
unpacking
A
20
Q
*args, **kwargs
A
21
Q
docs.python.org/3/library/functions.html#print
A
22
Q
print(*objects, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)
A
23
Q
map
A
24
Q
docs.python.org/3/library/functions.html#map
A
25
map(function, iterable, ...)
26
list comprehensions
27
filter
28
docs.python.org/3/library/functions.html#filter
29
filter(function, iterable)
30
dictionary comprehensions
31
enumerate
32
docs.python.org/3/library/functions.html#enumerate
33
enumerate(iterable, start=0)
34
generators
35
docs.python.org/3/howto/functional.html#generators
36
yield
37
iterators
38
docs.python.org/3/howto/functional.html#iterators