作业: 1.编写一个Dog类,并生成对象dog,属性包含颜色,大小,重量,可以汪汪叫,摇尾巴,跑 # -*- coding: utf-8 -*- class Dog: def __init__(self, color, size, weight): self.color = color self.size = size self.weight = weight def wangwang(self): text = "dog color:{},size:{},wieght:{} wangwang&…