Advertisement
Guest User

Untitled

a guest
Oct 1st, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. class Example:
  2.    
  3.    
  4.     def print_stuff(self):
  5.         print("hi")
  6.    
  7.     def main(self):
  8.         one = print_stuff()
  9.        
  10.         return one
  11.    
  12.    
  13.    
  14.    
  15.  
  16.  
  17. one = Example()
  18. one.main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement