面向对象学习20170916
Posted 龙二他爹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象学习20170916相关的知识,希望对你有一定的参考价值。
class persion: def info (self,name,age): print "Your name is %s,you are %s years old" %(name,age) P=persion() P.info(‘TOM‘,25)
类和函数的区别就是,多一个参数 self, 指对象本身。
实例:
方法:
类的初始化
class persion: def __init__(self,nationnality): self.country=nationnality def info (self,name,age): print "Your name is %s,you are %s years old, you are from %s" %(name,age,self.country) P=persion(‘CHINA‘) P.info(‘TOM‘,25)
以上是关于面向对象学习20170916的主要内容,如果未能解决你的问题,请参考以下文章