码迷,mamicode.com
首页 > 编程语言 > 详细

Python练习_1

时间:2019-03-07 16:13:24      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:class   pre   turtle   绘制   port   距离   pen   style   color   

定义多点坐标_绘制折线_并计算起始点和终点的距离

源码

import turtle
import math

# 定义多个坐标点
x1, y1 = 100, 100
x2, y2 = 100, -100
x3, y3 = -100, -100
x4, y4 = -100, 100

# 绘制折线
turtle.penup()
turtle.goto(x1, y1)
turtle.pendown()
turtle.goto(x2, y2)
turtle.goto(x3, y3)
turtle.goto(x4, y4)

# 计算起点和终点的距离

distance = math.sqrt((x4 - x1)**2 + (y4 - y1)**2)
turtle.write(distance)

 

Python练习_1

标签:class   pre   turtle   绘制   port   距离   pen   style   color   

原文地址:https://www.cnblogs.com/cherish-lwy/p/10489898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!