This document contains 20 multiple choice questions and answers about Python concepts like variables, data types, operators, and packages. Some key points covered include:
- The %clear command clears the console in Spyder.
- Alphanumeric variable names with underscores are valid.
- Python files use the .py extension.
- Common operators include = for assignment, % for remainder, ** for exponentiation, and type() to check data type.
- Comments begin with #.
- Common packages for visualization include matplotlib and seaborn.
- Membership is tested with "in" and "not in" while identity uses "is" and "is not".