class Car:
    def beep(self):
        print('Beep')

car = Car()
car.beep()

#https://pt.stackoverflow.com/q/482008/101