美文网首页
简单的python面向对象

简单的python面向对象

作者: 爱代码的派派星 | 来源:发表于2018-01-25 11:06 被阅读0次

    class Car:
    speed = 0
    def drive(self,dis):
    time=dis/self.speed
    print time

    car = Car()
    car.speed=60
    car.drive(100)

    相关文章

      网友评论

          本文标题:简单的python面向对象

          本文链接:https://www.haomeiwen.com/subject/zxzmaxtx.html