Python Basics
1. Variables
Variables store data in memory that can be referenced later.
name = "Amit"
age = 33
2. Data Types
Python has several built-in data types:
int: Integer numbers
float: Decimal numbers
str: Strings (text)
bool: Boolean (True/False)
l...
amitsangwan.hashnode.dev7 min read