π Welcome to Day 2 of the Python Learning Series
In this video, we cover the most essential foundations of Python: **Data Types**, **Variables**, and **Arithmetic Operations**.
These are critical for anyone learning programming, data science, or AI.
---
π¨βπ« Instructor: Abhishek Mishra
π LinkedIn: https://www.linkedin.com/in/abhishekmishraai
πΊ YouTube: https://www.youtube.com/@abhishekmishraai
π GitHub: https://github.com/abhishekmishraai
---
π§ What You Will Learn Today:
- Different data types in Python: int, float, bool, str, datetime
- Declaring and using variables in Python
- Arithmetic operations: +, -, *, /, //, %, **
- Variable naming rules and case sensitivity
- Comparison operators: ==, !=,
---
Class - https://github.com/abhishekmishraai/python/blob/main/youtube/Day%201.ipynb
π» Sample Code Covered:
```python
a = 10
b = 3.5
print(a + b) # 13.5
a = 10
b = 3
print(a % b) # 1
Download
0 formats
No download links available.
Python Day 1 β Master Variables, Operators, and Comparisons | NatokHD