摘要: from abc import ABCMeta, abstractmethod # 定义一个抽象类 class Person(metaclass=ABCMeta): name = "泰山" @classmethod # 类方法 def walking(cls): print("{}在走路".form 阅读全文
posted @ 2022-02-10 15:32 我在路上回头看 阅读(37) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.title('PythonBingDwenDwen') turtle.speed(10) # 速度 # 左手 turtle.penup() turtle.goto(177, 112) turtle.pencolor("lightgray") turtle.p 阅读全文
posted @ 2022-02-10 00:01 我在路上回头看 阅读(6259) 评论(0) 推荐(0) 编辑