Advertisement
Guest User

Para o querido Esh: Weslei

a guest
Jan 26th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.64 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. class herancatiosam:
  3.          def __init__(self):
  4.                  pass
  5.          def printatiu(self, looool):
  6.                  print looool
  7.          def printadenovotiu(self, l):
  8.                  print l
  9.                  
  10. class herdatiusam(herancatiosam):
  11.         def __init__(self):
  12.                 herancatiosam.__init__(self)
  13.                 self.printatiu("tiiiuuuu")
  14.                 self.printadenovotiu("tiiiiiiiiuuuuuuuuuuu")
  15.                 self.printtnaclassequeherdaotiusam("na claaaaaseeeeeeeee")
  16.                
  17.         def printtnaclassequeherdaotiusam(self, cl):
  18.             print cl
  19.  
  20. herdatiusam()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement