Is Python a dynamic or static typed language?
Dynamic
How do you do multiple variable assignments on the same line in Python?
n, m = 0, “abc”
If you want to increment a variable in Python, what are your options?
n += 1
n = n + 1
True or False: using n++ is valid to increment a variable in Python
False
What is the null equivalent called in Python?
None