xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 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)
????

評論

共有 條評論