abobaker09

oop_python

Oct 8th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. class beko:
  2.     def add(self,x):
  3.         print(x)
  4. class hilal(beko):
  5.     def div(self,y):
  6.         print(y)
  7. new1=hilal()
  8. new1.add("beko")
  9. new1.div("hlal")
Advertisement
Add Comment
Please, Sign In to add comment