8 lines
135 B
Python
8 lines
135 B
Python
from eletronico import Smartphone
|
|
|
|
galaxy_s = Smartphone('Galaxy S')
|
|
iphone = Smartphone('iPhone')
|
|
|
|
galaxy_s.ligar()
|
|
iphone.desligar()
|