Advertisement
Dprogrammed1

python que 27

Jun 10th, 2019
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. class student:
  2.     def __init__(self):
  3.         self.marks = 97
  4.         self.__cgpa = 8.7
  5.     def display(self):
  6.         print(self.marks)
  7. obj=student()
  8. print(obj._student__cgpa)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement