Assignment Module 3
Assignment Module 3
print(Age1)
5age=55 # it cannot run or execute due to as per rules of variables it will start from alphabetes
print(Age_1)
#2. What will be the output of following (can/cannot): b.age@1=100
age@1=100 # it cannot run or execute due to aper the rules of variables it will start from
either alphabets or underscore symbol only.
a=5
del a
print(a)