# Python Course
## 1. Introduction to Python
### What is Python?
Python is a high-level, interpreted programming language known for its simplicity and readability. It is widel
### Installing Python
- Download Python from python.org
- Install Python and verify installation using:
python --version
### Running Python Programs
- Using Python Interpreter
- Running Python scripts (.py files)
- Using Jupyter Notebook
## 2. Basic Python Syntax
### Variables and Data Types
- Integer, Float, String, Boolean
- Example:
x = 10
name = "Alice"
is_active = True
### Operators
- Arithmetic: +, -, *, /, //, %, **
- Comparison: ==, !=, >, <, >=, <=
- Logical: and, or, not
### Control Flow
- If-Else:
if x > 5:
print("x is greater than 5")
else:
print("x is 5 or less")
- Loops:
for i in range(5):
## 1. Introduction to Python
### What is Python?
Python is a high-level, interpreted programming language known for its simplicity and readability. It is widel
### Installing Python
- Download Python from python.org
- Install Python and verify installation using:
python --version
### Running Python Programs
- Using Python Interpreter
- Running Python scripts (.py files)
- Using Jupyter Notebook
## 2. Basic Python Syntax
### Variables and Data Types
- Integer, Float, String, Boolean
- Example:
x = 10
name = "Alice"
is_active = True
### Operators
- Arithmetic: +, -, *, /, //, %, **
- Comparison: ==, !=, >, <, >=, <=
- Logical: and, or, not
### Control Flow
- If-Else:
if x > 5:
print("x is greater than 5")
else:
print("x is 5 or less")
- Loops:
for i in range(5):