溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python中turtle庫的基礎(chǔ)語法和使用

發(fā)布時間:2021-06-24 13:41:31 來源:億速云 閱讀:495 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Python中turtle庫的基礎(chǔ)語法和使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python中turtle庫的基礎(chǔ)語法和使用”吧!

前言

Python語言的turtle庫是一個直觀有趣的圖形繪制函數(shù)庫,是python語言標準庫之一。

turtle庫也叫海龜庫,是turtle繪圖體系的Python實現(xiàn)。turtle庫是Python語言的標準庫之一,是入門級的圖形繪制函數(shù)庫。

turtle繪圖體系:也叫海龜繪圖系統(tǒng),它是在1969年誕生,主要用于程序設(shè)計入門的一種繪圖方式。

Python計算生態(tài) = 標準庫 + 第三方庫

標準庫:隨解釋器直接安裝到操作系統(tǒng)中的功能模塊。

第三方庫:需要經(jīng)過安裝才能使用的功能模塊。

turtle官方文檔:https://docs.python.org/3/library/turtle.html

turtle庫的繪圖原理是在一個橫軸為x、縱軸為y的坐標平面中,以原點(0,0)位置為開始點,根據(jù)一組函數(shù)指令的控制來移動,從而在它爬行的路徑上繪制圖形。

Python中turtle庫的基礎(chǔ)語法和使用

一、turtle庫的導(dǎo)入

方法一:import turtle

方法二:import turtle as t

方法三:from turtle import *

二、繪圖命令介紹

1. 畫布屬性設(shè)置

語法含義
turtle.screensize(width,height,bg)   設(shè)置畫布的寬、高、背景顏色
turtle.setup(width,height,startx,starty)  設(shè)置畫布顯示窗口的大小、位置,前兩個參數(shù)為窗口大小,后兩個參數(shù)為起始點位置

2. 畫筆屬性設(shè)置

語法含義
turtle.pensize(width)設(shè)置當前畫筆線條的寬度為width像素
turtle.colormode(1.0[255])設(shè)置畫筆顏色模式
turtle.pencolor(colorstring)設(shè)置畫筆的顏色,參數(shù)colorstring可以是"green"、"red"、"blue"、“yellow”等英文字符串
turtle.speed(5)設(shè)置畫筆的移動速度,畫筆繪制的速度范圍在[0,10]整數(shù)之間,數(shù)字越大,畫筆移動的速度越快。

Python中turtle庫的基礎(chǔ)語法和使用

3.  移動畫筆和轉(zhuǎn)角繪圖

語法含義
turtle.penup()/pu()/up()提起畫筆,不繪圖
turtle.pendown()/pd()/down()畫筆移動時繪制圖形
turtle.forward(100)/fd(100)畫筆向當前方向移動100像素距離
turtle.backward(100)/bk(100)畫筆向相反方向移動100像素距離
turtle.right(45)/rt(45)畫筆順時針移動45度
turtle.left(45)/lt(45)畫筆逆時針移動45度
turtle.setheading(45)/seth(45)設(shè)置當前畫筆朝向為45度
turtle.goto(x,y)移動畫筆到指定坐標位置
turtle.hideturtle()隱藏畫筆turtle形狀
turtle.showturtle()顯示畫筆turtle形狀

實例代碼

# coding:utf8
import turtle as t
 
t.setup(500, 500)    # 設(shè)置畫布大小
t.reset()            # 清空窗口
t.pensize(4)         # 設(shè)置畫筆大小為4
 
# 繪制外層正方形
t.penup()            # 提起畫筆
t.pencolor("red")    # 設(shè)置畫筆顏色
t.goto(-200, -200)    # 設(shè)置外層正方形起點坐標
t.pendown()
t.forward(400)       # 外層正方形邊長為400像素
t.left(90)
t.forward(400)
t.left(90)
t.forward(400)
t.left(90)
t.forward(400)
 
# 繪制中間正方形
t.penup()
t.pencolor("yellow")
t.goto(-150, -150)   # 中間正方形起點坐標
t.pendown()
t.seth(0)           # 重新設(shè)定畫筆角度為0°
t.forward(300)
t.left(90)
t.forward(300)
t.left(90)
t.forward(300)
t.left(90)
t.forward(300)
 
# 繪制內(nèi)層中方形
t.penup()
t.pencolor("blue")
t.goto(-100,  -100)    # 內(nèi)層正方形起點坐標
t.pendown()
t.seth(0)
t.forward(200)
t.left(90)
t.forward(200)
t.left(90)
t.forward(200)
t.left(90)
t.forward(200)
 
t.done()

Python中turtle庫的基礎(chǔ)語法和使用

4.  圖形繪制與圖形填充

語法含義
turtle.circle(5,[extent,steps])繪制半徑為5的圓形
turtle.color(pencolor,fillcolor)同時設(shè)置畫筆顏色(邊框顏色)和填充顏色
turtle.begin_fill()以當前為起點,開始填充顏色
turtle.end_fill()以當前為終點,結(jié)束填充圖形
turtle.done()繪圖結(jié)束后,保留窗口

代碼實例

# coding:utf8
import turtle
 
turtle.setup(500, 500)
turtle.reset()
turtle.pensize(5)
 
turtle.penup()
turtle.goto(0, -200)
turtle.pendown()
 
# 繪制紅邊框藍填充顏色的大圓
turtle.color("red", "blue")
turtle.begin_fill()
turtle.circle(200)
turtle.end_fill()
 
# 繪制紅邊框綠填充顏色的大圓
turtle.color("red", "green")
turtle.begin_fill()
turtle.circle(150)
turtle.end_fill()
 
# 繪制紅邊框黃填充顏色的大圓
turtle.color("red", "yellow")
turtle.begin_fill()
turtle.circle(100)
turtle.end_fill()
 
turtle.done()

 Python中turtle庫的基礎(chǔ)語法和使用

三、turtle繪圖實例:繪制太陽花

import turtle as t        # 導(dǎo)入Turtle庫,并指定導(dǎo)入庫的別名為t
 
t.color("red", "yellow")  # 同時設(shè)置pencolor=red, fillcolor=yellow
t.speed(10)               # 設(shè)置畫筆繪制的速度為10
t.begin_fill()            # 準備開始填充圖形
 
for x in range(50):       # 利用for循環(huán)繪制太陽花
    t.forward(200)        # 向當前畫筆方向移動200像素
    t.left(170)           # 逆時針旋轉(zhuǎn)170度
 
t.end_fill()              # 填充完成
t.done()                  # 繪制完成后窗口不退出

Python中turtle庫的基礎(chǔ)語法和使用

到此,相信大家對“Python中turtle庫的基礎(chǔ)語法和使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI