About the python

First program

Print("my self c panduranga reddy")

Variables

  1. name
  2. age(variable) =23(value)( if age value is changed in feature that value id considered)
  3. price

Memory

image.png

name = "cpandu"
age = 23
percentage = 70.1
print("age") // this print function prints the age not what in side that age(23),
when ever you write any thing in side the "" in the print fuction it will print waht ever is there
print(age,name,percentage)
print("MY name is :", name)
print("my age is:", age)

(=) This symbol is known as assignment operator a ‘=’ b This equal to symbol refers to value of(b value is inserted into the a)

Rules for identifiers

image.png