Advertisement
apl-mhd

main.py

Jan 23rd, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. import  hello
  2. class Main:
  3.  
  4.  
  5.  
  6.     def one(self):
  7.         print("method one call")
  8.  
  9.     def two(self):
  10.         print("method two call")
  11.  
  12. def three():
  13.     print("three")
  14.  
  15.  
  16. three()
  17.  
  18. ob1  = Main()
  19.  
  20.  
  21.  
  22.  
  23. ob =  hello.DataTable()
  24. ob.menuBar()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement