【Python基础编程205 ● 面向对象 ● 创建多个对象】


---------Python基础编程---------

Author : AI菌


 

【内容讲解】

1、创建多个对象的格式:
对象名 = 类名()
对象名 = 类名()
对象名 = 类名()

 

【代码实现】

"""
1、创建多个对象的格式:
      对象名 = 类名()
      对象名 = 类名()
      对象名 = 类名()
"""

class Student(object):

    def eat(self, food):
        print("吃%s" % food)

    def sleep(self, where):
        print(f"睡在{where}")

    def study(self, course):
        print(f"学习{course}")

# 对象1
student1 = Student()

# 对象2
student2 = Student()

# 对象3
student3 = Student()

 

【往期精彩】

▷【Python基础编程196 ● 读取文件的4种方式】
▷【Python基础编程197 ● 读取文件的4种方式】
▷【Python基础编程198 ● 读取文件的4种方式】
▷【Python基础编程199 ● Python怎么读/写很大的文件】
▷【Python基础编程200 ● 读取文件的4种方式】
▷【Python基础编程201 ● 读取文件的4种方式】
▷【Python基础编程202 ● 读取文件的4种方式】
▷【Python基础编程203 ● 读取文件的4种方式】

 

【加群交流】



posted @ 2020-07-27 17:33  AI菌  阅读(627)  评论(0编辑  收藏  举报