Guest User

Untitled

a guest
Mar 17th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class Invoice:
  2.  
  3. def greeting(self):
  4. return 'Hi there'
  5.  
  6.  
  7. inv_one = Invoice()
  8. print(inv_one.greeting())
Add Comment
Please, Sign In to add comment