Misc. Flashcards

1
Q

//

What does the above do

A

Floor Division (returns a whole number rounded down)

The whole number could be an int or a float

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

What’s the short-command for quick-save

A

Ctrl + s

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

What’s the best case to use when naming .py files

A

lower-case letters with underscores

E.g.,

python_app.py

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

What is the best naming convention when defining a constant

A

ALL_CAPITALS_WITH_UNDERSCORES

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

How do you indent multiple lines at the same time

A

Highlight all the lines then hit tab

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

When importing functions from modules, you will generally need to use dot notation, e.g.,

import processor
print(processor.function_1)

How can you import functions and NOT have to use dot notation

A

from processor import function_1

print(function_1)

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

Short command for redo

A

Ctrl + Shift + Z

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

are “num // num” & “math.floor(num / num)” identical

A

Both divide & round down, but…

“num // num” will return either an int or a float, but “ “math.floor(num / num)” always returns an int

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

“or” returns True if either condition is true. But what if both conditions are true

A

“or” will also return True

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