10: Et Cetera Flashcards

1
Q

docs.python.org

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

docs.python.org/3/tutorial

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

docs.python.org/3/library

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

docs.python.org/3/reference

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

docs.python.org/3/howto

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

set

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

docs.python.org/3/library/stdtypes.html#set

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

global

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

constants

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

type hints

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

docs.python.org/3/library/typing.html

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

mypy

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

pip install mypy

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

mypy.readthedocs.io

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

docstrings

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

peps.python.org/pep-0257

17
Q

argparse

18
Q

docs.python.org/3/library/argparse.html

19
Q

unpacking

20
Q

*args, **kwargs

21
Q

docs.python.org/3/library/functions.html#print

22
Q

print(*objects, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)

24
Q

docs.python.org/3/library/functions.html#map

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