面向对象 - 封装
面向对象编程,把一类数据和处理这类数据的方法封装在一个类中,让程序的结构更清晰,不同的功能之间相互独立。
在线运行演示代码
参考教程
class Car: speed = 60.0 def drive(self, distance): time = distance / self.speed print(time) car = Car() car.drive(100.0) car.drive(200.0)