编程论坛
注册
登录
编程论坛
→
Python论坛
求助:我打算画一个奥运五环,怎么平移起笔(在乌龟画图里)
Sharpasmart
发布于 2018-09-05 11:52, 2248 次点击
因为第一行的五个环不相连,怎么画第一个圆之后,隔一段距离再画第二个圆?
3 回复
#2
kfyniriu
2018-09-05 17:36
pygame.draw.circle(screen,color,pos,radius,width)
#3
无知的幸福
2018-09-07 21:38
penup()#提起画笔
#在这里输入你要移动到什么位置,用goto(),fd()或者bd()三个函数执行。
pendown()#画笔落下
#可以百度查看下turtle库的命令
#4
Artless
2018-09-11 08:18
logo
1