码迷,mamicode.com
首页 > 编程语言 > 详细

python之类和对象

时间:2020-02-18 18:31:10      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:car   def   mil   pre   func   transport   size   python   style   

class Transport:
‘交通工具‘

def __init__(self,name, type, place):
self.name=name
self.type=type
self.place=place

function=‘运输‘
def pick(self):
print(‘%s%s在%s上跑‘ % (self.name,self.type,self.place))
car=Transport(‘林肯‘,‘汽车‘,‘陆地‘)
Transport.pick(car)
car.time=‘10 year‘
print(car.function)
def test(self):
print(‘%s起步速度快‘%self.name)
Transport.test=test
Transport.test(car)

python之类和对象

标签:car   def   mil   pre   func   transport   size   python   style   

原文地址:https://www.cnblogs.com/cxydnxs/p/12327053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!