beginnerPython
What is Python?
Answer
Clear, interview-ready explanation
Python is a high-level, general-purpose programming language known for its simple and readable syntax. It was created by Guido van Rossum and first released in 1991.
Python supports multiple programming styles, including:
- Object-oriented programming
- Procedural programming
- Functional programming
It is widely used in web development, automation, data science, artificial intelligence, machine learning, testing, and scripting.
Example:
message = "Hello, Python!"
print(message)
Output:
Hello, Python!