python基础学习
Posted songxiaoke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础学习相关的知识,希望对你有一定的参考价值。
22.类
# 类 class # 实例 实体 instance class Student: # 空语句 保持结构的完整性 pass jack = Student() jack.name = "Song Ke" print(jack.name) pony = Student() pony.name = "pony" print(pony.name)
run结果:
23.构造函数
# 构造函数 constructor class Student: # 声明构造函数 系统调用的 def __init__(self, name, age, sex): self.name = name self.age = age self.sex = sex print("__init__ is run") jack = Student("jack.a", 21, "男") pony = Student("pony.b", 22, "女") print(jack.name, jack.age, jack.sex) print(pony.name, pony.age, pony.sex)
run结果:
以上是关于python基础学习的主要内容,如果未能解决你的问题,请参考以下文章