Advertisement
Guest User

tavares

a guest
Jan 19th, 2009
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: iso-8859-1 -*-
  3. # init.py
  4. class Person:
  5.     def __init__(self,nome):
  6.         self.nome = nome
  7.     def alo(self):
  8.         print 'Alô, meu nome é',self.nome
  9. p = Person('Samuel')
  10. p.alo()
  11. print 'chamando com outra sintaxe'
  12. Person('Samuel').alo()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement