Guest User

Untitled

a guest
Jul 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # The name of this file is python-module.py .
  2. # To use Calculator class or hello_world function from other files, call import module (without py extension)
  3.  
  4. # Calculator class
  5. class Calculator:
  6. def __init__(self):
  7. self.current = 0
  8.  
  9. def add(self, amount):
  10. self.current += amount
  11.  
  12. def get_current(self):
  13. return self.current
  14.  
  15.  
  16. # Stand alone function
  17. def hello_world(name):
  18. print("Hello, World! My name is %s" % name)
Add Comment
Please, Sign In to add comment