Пример #1
0
def main():
	o4f = Cellphone()
	o4f.call()
	o4f.text()
	o4f.drop()
Пример #2
0
Файл: main.py Проект: NOdoff/OOP
def main():
    t = Cellphone()
    t.call()
    t.text()
    t.drop()
Пример #3
0
def main():
    cellphone = Cellphone()
    cellphone.call()
    cellphone.text()
    cellphone.drop()
Пример #4
0
from cellphone import Cellphone

if __name__ == '__main__':
    cp = Cellphone()
    cp.call()
    cp.text()
    cp.drop()
Пример #5
0
def main():
    c = Cellphone()
    c.call()
    c.text()
    c.drop()