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
Q

map(function, iterable, …)

26
Q

list comprehensions

27
Q

filter

28
Q

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

29
Q

filter(function, iterable)

30
Q

dictionary comprehensions

31
Q

enumerate

32
Q

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

33
Q

enumerate(iterable, start=0)

34
Q

generators

35
Q

docs.python.org/3/howto/functional.html#generators

36
Q

yield

37
Q

iterators

38
Q

docs.python.org/3/howto/functional.html#iterators