🔹
✅
👉
Sample Notes (Python Basics)
Introduction to Python
Python is a high-level, interpreted programming language.
Created by Guido van Rossum in 1991.
Uses indentation instead of {} to define code blocks.
Very popular because it is simple and easy to learn.
---
Features of Python
Simple & Easy to Learn → Syntax like English
Interpreted Language → No need to compile
Open Source & Free → Anyone can use
Portable → Runs on Windows, Mac, Linux
Large Library → Many built-in modules
Object-Oriented → Supports classes & objects
---
Example Program
print("Hello, World!")
Output:
Hello, World!
✅
👉
Sample Notes (Python Basics)
Introduction to Python
Python is a high-level, interpreted programming language.
Created by Guido van Rossum in 1991.
Uses indentation instead of {} to define code blocks.
Very popular because it is simple and easy to learn.
---
Features of Python
Simple & Easy to Learn → Syntax like English
Interpreted Language → No need to compile
Open Source & Free → Anyone can use
Portable → Runs on Windows, Mac, Linux
Large Library → Many built-in modules
Object-Oriented → Supports classes & objects
---
Example Program
print("Hello, World!")
Output:
Hello, World!