abobaker09

supper_python

Oct 8th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.55 KB | None | 0 0
  1. # السيوبر او الكلاس الاب هو دالة جاهزة توفرها بايثون لطباعه محتوي الكلاس الاب اثناء التجاوز
  2. #شرحه
  3. #هو طباعه دوال او متغيرات الكلاس الاب اثناء التجاوز
  4. class ee:
  5.     y=8
  6.     def g(self):
  7.         print("good")
  8. class dd (ee):
  9.     y=20
  10.     def g(self):
  11.         print(super().y)
  12.         super().g()#هنا تم السيوبر
  13.         print("_____________________ \t that is supeer")
  14.         print("bad")
  15. d=dd()
  16. d.g()
  17. print(d.y)
Advertisement
Add Comment
Please, Sign In to add comment