python 使用turtle庫簡單繪圖5個列子
一 使用turtle庫,繪製一個蟒蛇形狀的圖形。
import turtle
turtle.setup(1000,600,200,200)
turtle.pensize(25)
turtle.pencolor("purple")
turtle.penup()
turtle.setx(-300)
turtle.pendown()
turtle.seth(-40)
turtle.speed(1)
for i in range(4):
turtle.circle(40,80)
turtle.circle(-40,80)
turtle.circle(40,40)
turtle.forward(40)
turtle.circle(16,180)
turtle.forward(40)
turtle.done()
輸出結果:
二 使用turtle庫,繪製一個正方形。
import turtle
turtle.setup(1000,600)
turtle.pensize(5)
for i in range(4):
turtle.forward(150)
turtle.left(90)
turtle.done()
輸出結果:
三 使用turtle庫,繪製一個六邊形。
import turtle
turtle.setup(1000,600)
turtle.pensize(5)
for i in range(6):
turtle.fd(150)
turtle.left(60)
turtle.done()
輸出結果:
四 使用turtle庫,繪製一個疊邊形,其中,疊邊形內角為100度。
import turtle
turtle.setup(1000,600)
turtle.pensize(5)
for i in range(9):
turtle.forward(200)
turtle.left(80)
turtle.done()
輸出結果:
五 使用turtle庫,繪製一個風輪效果,其中,每個風輪內角為45度,風輪邊長150畫素。
import turtle
turtle.setup(1000,600)
turtle.pensize(5)
turtle.pencolor("red")
turtle.speed(1)
for i in range(4):
turtle.seth(90*i)
turtle.forward(150)
turtle.right(90)
turtle.circle(-150, 45)
turtle.goto(0, 0)
turtle.done()
輸出結果:
相關文章
- Python繪圖Turtle庫詳解Python繪圖
- Python基本圖形繪製--模組1:turtle庫的使用Python
- 使用python的turtle繪畫滑稽臉Python
- Python繪圖,聖誕樹,花,愛心 | Turtle篇Python繪圖
- Python如何運用turtle繪製陰陽太極圖Python
- 【python:turtle繪畫 聖誕樹】Python
- 2.14Python標準庫使用案例:使用turtle繪製奧林匹克五環Python
- python turtle 使用Python
- 使用Python的turtle模組繪製美麗的櫻花樹Python
- Python的畫圖模組turtle使用詳解Python
- 上下文繪圖,濾鏡簡單使用繪圖
- MATLAB簡單繪圖Matlab繪圖
- (二)turtle庫的使用
- 函式指標簡單的列子函式指標
- turtle庫
- python requests庫的簡單使用Python
- Python學習筆記——turtle庫Python筆記
- 繪圖: Python matplotlib簡介繪圖Python
- python使用xlsxwriter繪圖Python繪圖
- 繪製流程圖的簡單軟體流程圖
- 如何自學qt(12)——簡單的繪圖QT繪圖
- turtle繪製國際象棋棋盤
- HTML5使用canvas繪製圖形HTMLCanvas
- 簡單介紹5個python的實用技巧Python
- 化學繪圖軟體ChemDraw,繪製簡單的化學元素繪圖
- python繪圖Python繪圖
- Python 繪圖Python繪圖
- python使用matplotlib繪圖詳解Python繪圖
- 【Yolov5】簡單使用YOLO
- sChart.js:一個小型簡單的圖表庫JS
- PyQT5繪圖QT繪圖
- Python使用Socket寫一個簡單聊天程式Python
- 使用Canvas繪製簡單工程符號(續)Canvas符號
- 使用Python和requests庫的簡單爬蟲程式Python爬蟲
- 關於如何使用原生HTML + JS + CSS繪製簡單折線柱狀圖HTMLJSCSS
- Python Tkinter 簡單使用Python
- Python request簡單使用Python
- python - Counter簡單使用Python