摘要: import turtle # 导入海龟绘图模块def drawrect(c): turtle.color(c,c) # 设置颜色 turtle.begin_fill() # 开始填充 for i in range(4): ... 阅读全文
posted @ 2021-03-10 16:30 有图有派 阅读(30) 评论(0) 推荐(0) 编辑
摘要: i=['a','b']l=[1,2]print (dict([i,l])) 阅读全文
posted @ 2021-03-10 16:26 有图有派 阅读(34) 评论(0) 推荐(0) 编辑