Exemplo n.º 1
0
def main():
	o4f = Cellphone()
	o4f.call()
	o4f.text()
	o4f.drop()
Exemplo n.º 2
0
Arquivo: main.py Projeto: NOdoff/OOP
def main():
    t = Cellphone()
    t.call()
    t.text()
    t.drop()
Exemplo n.º 3
0
def main():
    cellphone = Cellphone()
    cellphone.call()
    cellphone.text()
    cellphone.drop()
Exemplo n.º 4
0
from cellphone import Cellphone

if __name__ == '__main__':
    cp = Cellphone()
    cp.call()
    cp.text()
    cp.drop()
Exemplo n.º 5
0
def main():
    c = Cellphone()
    c.call()
    c.text()
    c.drop()