06 2022 档案

摘要:from turtle import * def square(size=50, rgb='gold'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) n = 10 f 阅读全文
posted @ 2022-06-13 09:47 shengaochajiaohuafei 阅读(31) 评论(1) 推荐(0)
摘要:class User: count=0 def __init__(self,name='guest',password='111111',status=1): User.count+=1 self.name=name self.password=password self.status=statue 阅读全文
posted @ 2022-06-08 23:19 shengaochajiaohuafei 阅读(20) 评论(0) 推荐(0)