def main(): o4f = Cellphone() o4f.call() o4f.text() o4f.drop()
def main(): t = Cellphone() t.call() t.text() t.drop()
def main(): cellphone = Cellphone() cellphone.call() cellphone.text() cellphone.drop()
from cellphone import Cellphone if __name__ == '__main__': cp = Cellphone() cp.call() cp.text() cp.drop()
def main(): c = Cellphone() c.call() c.text() c.drop()