Advertisement
ph4x35ccb

ok por enquanto kk

Feb 5th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import veiculo
  2.  
  3. class Moto(veiculo.Veiculo):
  4.     def __init__(self, cor, tipo_combustivel, potencia, qtd_passageiros):
  5.         super.__init__(cor, tipo_combustivel, potencia)
  6.         self.qtd_passageiros = qtd_passageiros
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement