python self

Posted i勤能补拙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python self相关的知识,希望对你有一定的参考价值。

‘‘‘
self代表类的实例,而非类
哪个对象调用方法,那么该方法中的self就代表那个对象

self.__class__ 代表类名_
‘‘‘

class Person(object):
def run(self):
print("run")
print(self.__class__)
p = self.__class__("tt", 30, 10, 30)
print(p)
def eat(self, food):
print("eat " + food)
def say(self):
print("Hello! my name is %s, I am %d years old" % (self.name, self.age))
#self不是关键字,换成其他的标识符也是可以的,但是帅的人都是用self
def play(a):
print("play " + a.name)
def __init__(self, name, age, height, weight):
self.name = name
self.age = age
self.height = height
self.weight = weight

per1 = Person("tom", 20, 160, 80)
per1.say()

per2 = Person("hanmeimei", 21, 160, 80)
per2.say()


per1.play()

per1.run()

以上是关于python self的主要内容,如果未能解决你的问题,请参考以下文章

Python为啥要self

[转]python self类构造和析构方法 简单学习

代写python,代写python编程,python代写,python编程代写,留学生python代写

001--python全栈--基础知识--python安装

Python代写,Python作业代写,代写Python,代做Python

Python开发