Python Interview Questions - Summary
1. What is Python?
Python is a high-level, interpreted programming language known for its simplicity and versatility.
2. Features of Python
Easy to learn, interpreted, dynamically typed, platform-independent, extensive libraries, supports OOP and functional
programming.
3. Is Python case-sensitive?
Yes, Python treats uppercase and lowercase letters differently.
4. Is Python platform-independent?
Yes, Python code can run on any platform with a compatible interpreter.
5. Applications of Python
Web development, data science, machine learning, automation, scripting, and more.
6. Python 2 vs 3
Python 3 is the future, with better syntax, unicode support, and library compatibility. Python 2 is obsolete.
7. Does Python have double data type?
No, Python uses float instead of double.
8. Are strings immutable?
Yes, strings in Python are immutable.
Page 1
Python Interview Questions - Summary
9. Can True = False?
No, trying to assign True = False will raise a syntax error.
Page 2