摘要: import turtle t=turtle t.circle(100) t.penup() t.goto(0,-50) t.pendown() t.circle(150) t.penup() t.goto(0,-100) t.pendown() t.circle(200) t.done()#画完窗 阅读全文
posted @ 2022-05-13 11:36 小柳的博客 阅读(13) 评论(0) 推荐(0)
摘要: a1=dict(name="hzl",age=20,salary="30000",city="bj") a2=dict(name="wf",age=19,salary="20000",city="sh") a3=dict(name="hdb",age=18,salary="10000",city=" 阅读全文
posted @ 2022-05-12 20:43 小柳的博客 阅读(28) 评论(0) 推荐(0)
摘要: for i in range(1,10): for j in range(1,i+1): print("{0}{1}={2}".format(i,j,(ij)),end="\t") print() 阅读全文
posted @ 2022-05-12 20:19 小柳的博客 阅读(15) 评论(0) 推荐(0)