• 大小: 1.13KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  

资源简介

用python绘制出七巧板

资源截图

代码片段和文件信息

from math import sqrt
from turtle import *
# 绘制三角形函数
def triangle(a col):
    begin_fill()
    for i in range(1):
        fd(a)
        rt(135)
        fd(a * sqrt(2))
        rt(135)
        fd(a)
    fillcolor(col)
    end_fill()
    rt(180)
# 绘制正方形函数
def square(b col):
    begin_fill()
    for i in range(4):
        fd(b)
        rt(90)
    fillcolor(col)
    end_fill()
    rt(180)
# 绘制菱形函数
def diamond(c col):
    begin_fill()
    for i in range(2):
        fd(c)
    

评论

共有 条评论