Misc. Flashcards
//
What does the above do
Floor Division (returns a whole number rounded down)
The whole number could be an int or a float
What’s the short-command for quick-save
Ctrl + s
What’s the best case to use when naming .py files
lower-case letters with underscores
E.g.,
python_app.py
What is the best naming convention when defining a constant
ALL_CAPITALS_WITH_UNDERSCORES
How do you indent multiple lines at the same time
Highlight all the lines then hit tab
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
from processor import function_1
print(function_1)
Short command for redo
Ctrl + Shift + Z
are “num // num” & “math.floor(num / num)” identical
Both divide & round down, but…
“num // num” will return either an int or a float, but “ “math.floor(num / num)” always returns an int
“or” returns True if either condition is true. But what if both conditions are true
“or” will also return True