Python Lab Manual / Python program for Accessing Class Variable Using Object

Program Name

Write a Python program for Accessing Class Variable Using Class Object.
Theory
Python program for Accessing Class Variable is done Using class Object.
Program Code


Input and Output:
Hi  wisdom materials


Program Name

Write a Python program for Accessing Class Variable Using Class Object.
Theory
Python program for Accessing Hidden Class Variables is done Using class Object.
Program Code


Input and Output:
Output:
10


Program Name

Write a Python program for demonstrate working of object.
Theory
Python program for demonstrate working of object.
Program Code


Input and Output:
Printing its type of object class object is : 
 

Printing its attributes of a class : 
 ['__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__',
'__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__',
'__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',
'__setattr__', '__sizeof__', '__str__', '__subclasshook__']


Program Name

Write a Python program for checking for object equality .
Theory
Python program for checking for object equality .
Program Code


Input and Output:
Output:
Is obj1 equal to obj2 :  False


Program Name

Write a Python program for checking for object equality .
Theory
Python program for accessing attributes using objects of class .
Program Code


Input and Output:
Output:
123456789


Program Name

Write a Python program for checking for object equality .
Theory
Python program for accessing attributes using objects of class .
Program Code


Input:

Input and Output:
Output:
Outside-varible Out/Global varible
class1-Outside-varible Out/Global varible
class1 - Method1 - Out varible: Out/Global varible



Program Name

Write a Python program for accessing instance variable using objects of class.
Theory
Python program for accessing instance variable using objects of class .
Program Code


Input:

Input and Output:
Output:
100
jhon
10000
{'eno': 100, 'ename': 'jhon', 'salary': 10000}


Home     Back