本文主要是介绍使用海龟绘图。输入多个点,将这些点都两两相连。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用海龟绘图。输入多个点,将这些点都两两相连。
import turtledef con_line(xpoint_set,ypoint_set):"""将输入点两两相连"""turtle.pensize(2)#调整画笔粗细turtle.speed(1)#设置画笔速度n=0for i,j in zip(xpoint_set,ypoint_set):#外循环遍历所有点turtle.penup() #提笔turtle.goto(i,j)turtle.pendown() #落笔n += 1m = 0for x, y in zip(xpoint_set, ypoint_set):#内循环连接所有点一次m += 1if m >= n:turtle.goto(x,y)turtle.penup() # 提笔turtle.goto(i,j)turtle.pendown() # 落笔turtle.hideturtle()#隐藏海归turtle.done()#保留窗口不被销毁if __name__ == '__main__':xpoint_set = list(map(int,input("x点集:").split(" ")))#x点集ypoint_set = list(map(int,input("y点集:").split(" ")))#y点集con_line(xpoint_set,ypoint_set)
这篇关于使用海龟绘图。输入多个点,将这些点都两两相连。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!