Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Person:
  2. def _init_(self, name):
  3. self.name = name
  4. def sayHi(self):
  5. print "Hello, my name is", self.name
  6.  
  7. p = Person("Swaroop")
  8. p.sayHi()
Add Comment
Please, Sign In to add comment