Python Cheetsheet Flashcards

study cheatsheet

1
Q

What are the 5 python base types?

A

integer, float, boolean, string, bytes

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

What are the base types?

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

What are the container types?

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

What are the identifiers?

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

How does variable assignment work?

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

How do Python Conversions work?

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

How do you sequence containers with indexing?

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

How does Boolean Logic work?

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

How do Statements Blocks work?

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

How does Modules/Import naming work?

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

What are the Maths basics?

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

How do conditional statements work?

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

How do Exceptions on Errors work?

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

How does Conditional Loop Statements work?

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

How do Iterative Loop Statements work?

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

How does Display/Input work?

A
17
Q

What are Generic Operations on Containers?

A
18
Q

What are Operations on Lists?

A
19
Q

What are Operations on Dictionaries?

A
20
Q

What are Operations on Sets?

A
21
Q

What are Operations on Files

A
22
Q

What are Integer Sequences w/ Range

A
23
Q

How do function definitions work?

A
24
Q

How do function calls work?

A
25
Q

What are Operations on Strings?

A
26
Q

How does formatting work?

A
27
Q

Which container types are ordered sequences?

A

list [1,5,9]