美文网首页python
python--面向对象练习(自定义一个狗的类)

python--面向对象练习(自定义一个狗的类)

作者: 李菜菜同学 | 来源:发表于2021-03-06 22:42 被阅读0次

    一、练习

    要求:自定义一个Dog类

              属性:name、age、gender、height

    方法:run()、yao()、jaio()

    class Dog:

    def __init__(self,name,age,gender,height):

    self.name = name

    self.age = age

    self.gender = gender

    self.height = height

    def jiao(self):

    print('狗会叫,汪汪汪...')

    def yao(self):

    print('狗会咬人,嗷嗷嗷')

    def run(self):

    print('%s会跑,吼吼吼..'%self.name)

    d = Dog('小宝贝',8,'公',12)

    d.jiao()

    d.yao()

    d.run()

    图示

    相关文章

      网友评论

        本文标题:python--面向对象练习(自定义一个狗的类)

        本文链接:https://www.haomeiwen.com/subject/kmzsqltx.html