利用python的turtle重複畫六邊形

2021-08-18 19:12:06 字數 510 閱讀 5572

學習python,接觸到turtle包,就用它來畫一下六邊形。

要在python中使用turtle包,就先要安裝這個包。安裝步驟如下:按住win+r,在開啟cmd,輸入命令『pip install turtle',然後等待安裝就可以啦!

下面給出我畫六邊形的**,很簡單。

# -*- coding: utf-8 -*-

'''author:surecheun

功能:重複繪製六邊形

email:[email protected]

'''import turtle as tl

def main(n):

'''n為繪製六邊形的重複次數

'''i = 0

m = 50 #m為六邊形的邊長,每次增加20

while i得到下面的圖:

利用Python的turtle庫繪製玫瑰教程

turtle的文件 用python的turtle庫繪圖是很簡單的,閒來無事就畫了乙個玫瑰花,下面奉上原始碼.原始碼 created on nov 18,2017 author qizhao import turtle 設定初始位置 turtle.penup turtle.left 90 turtle...

利用python的turtle庫寫生日祝福

還在簡單的寫生日祝福嗎?自從學了python,我們可以更高大上一點,利用python的海龜畫圖來 畫 個生日祝福。from turtle import lf left bd backward sh setheading def sheng x,y pu goto x,y pd width 10 pe...

Python利用turtle庫繪製國際黑白象棋棋盤

turtle.forward diatance 向當前畫筆方向移動dis畫素長度 turtle.goto x,y 將畫筆移動到座標為x,y額位置 turtle.penup 提起筆移動,不繪製圖形,用於另起乙個地方繪製 turtle.pendown 移動時繪製圖形,預設時也為繪製 turtle.fil...