https://blog.csdn.net/hanhanwanghaha宝藏女孩 欢迎您的关注!
欢迎关注微信公众号:宝藏女孩的成长日记
让这个可爱的宝藏女孩在努力的道路上与你一起同行!
如有转载,请注明出处(如不注明,盗者必究)
#类用class,命名每个单词首字母大写,表示一类事物
class Model:"""输出模特名称国籍性别身高体重喜欢的地方"""
#属性 = 变量name = "x"nationality = "x"six = "x"height = 0weight = 0love_place = ()#方法:self为形参,也可以设其他值,self代表类的实例,并非类def dance(self, person):print(f"和{person}跳舞")def sing(self, person):print("唱歌")def basketball(self):print("打篮球")def eat(self):print("吃饭")def swim(self):print("她在游泳")if __name__ == "__main__":
#建实例对象,cool_model是一个Model这类事物的实例cool_model = Model()cool_model.name = "周杰伦"print(cool_model.name)cool_model.dance("刘畊宏")cool_model.love_place = ("重庆", "巴黎", "纽约", "上海")print("这位模特喜欢的地方", cool_model.love_place)print("*******************来一个华丽的分割线哈哈哈*******************")
#创建实例对象,beautful_model是一个Model这类事物的实例beauutful_model = Model()beauutful_model.name = "昆凌"print(beauutful_model.name)beauutful_model.six = "女"print("性别是", beauutful_model.six)beauutful_model.height = 170print("这位模特的海拔是", beauutful_model.height)beauutful_model.swim()
https://blog.csdn.net/hanhanwanghaha宝藏女孩 欢迎您的关注!
欢迎关注微信公众号:宝藏女孩的成长日记
让这个可爱的宝藏女孩在努力的道路上与你一起同行!
如有转载,请注明出处(如不注明,盗者必究)