Q1. Do I need to declare the type of a variable in Python?
A: No. Python uses dynamic typing, so you just assign a value.
Q2. Can variable names start with a number?
A: No. They must start with a letter or underscore.
Q3. What is the difference between = and ==?
A: = is for assignment, == is for comparison.