Python variables

What is a variable?

A variable is a container used to store data values and it allows to access, modify, and reuse data easily while the program runs.

Python Variables

Example:

x=10
name="Phanitej"

Explain:

Rules for naming variables

Types of data(Basic intro)

Dynamic Typing

Python automatically decides the type of variable

x=10
x="Hello"