编程语言
首页 > 编程语言> > Python面向对象

Python面向对象

作者:互联网

在该类下编写一个方法初始化该类,设定该类的属性。另外编写该类的方法描述该对象所具有的行为。

def describe_user(self): # 打印属性 print("The man's name is:"+str(self.first_name).title()+".") print("The man's age is:"+self.age) print("The sex is:"+self.sex+".")

`
def greet_user(self):

print("Hello,"+str(self.first_name).title()+str(self.last_name).title()+"!")`

类中的每个属性都必须有初始值,哪怕这个值是0或空字符串。在有些情况下,如设置默认值时,在方法__init__()内指定这种初始值是可行的;如果你对某个属性这样做了,就无需包含为它提供初始值的形参。

标签:__,name,Python,self,sex,面向对象,age,first
来源: https://www.cnblogs.com/7xiaomao/p/16046230.html