DAY-2
Python Basics – Variables, Strings, and Slicing
Variables in Python
A variable is a container used to store values. It helps in storing and accessing data easily.
Example:
x = 2
x → Variable name
2 → Value stored inside the variable
Variables can be updated:
x = 2
x = 9
Python automatically ...
pythonwithsudha.hashnode.dev3 min read