最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

如何用python畫(huà)豬頭

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-02 18:25:38
文檔

如何用python畫(huà)豬頭

如何用python畫(huà)豬頭:用python畫(huà)豬頭的方法:首先設(shè)置畫(huà)布和畫(huà)筆,代碼為【a.screensize(400,300)a.setup(width=400,height=300)】;然后畫(huà)臉型,代碼為【.goto(-100,100)】;最后留存圖像在畫(huà)布上即可?!鞠嚓P(guān)學(xué)習(xí)推薦:python視頻】用python畫(huà)豬頭的方法:畫(huà)布和畫(huà)
推薦度:
導(dǎo)讀如何用python畫(huà)豬頭:用python畫(huà)豬頭的方法:首先設(shè)置畫(huà)布和畫(huà)筆,代碼為【a.screensize(400,300)a.setup(width=400,height=300)】;然后畫(huà)臉型,代碼為【.goto(-100,100)】;最后留存圖像在畫(huà)布上即可。【相關(guān)學(xué)習(xí)推薦:python視頻】用python畫(huà)豬頭的方法:畫(huà)布和畫(huà)

用python畫(huà)豬頭的方法:首先設(shè)置畫(huà)布和畫(huà)筆,代碼為【a.screensize(400,300)a.setup(width=400,height=300)】;然后畫(huà)臉型,代碼為【.goto(-100,100)】;最后留存圖像在畫(huà)布上即可。

【相關(guān)學(xué)習(xí)推薦:python視頻】

用python畫(huà)豬頭的方法:

畫(huà)布和畫(huà)筆設(shè)置

import turtle as a
a.screensize(400,300)//設(shè)置屏幕大小
a.setup(width=400,height=300)//設(shè)置畫(huà)布大小
a.pensize(15)//設(shè)置畫(huà)筆寬度
a.speed(5)//設(shè)置畫(huà)筆速度
a.hideturtle()//隱藏畫(huà)筆

畫(huà)臉盤(pán)子

a.penup()//提筆
a.goto(-100,100)//移動(dòng)畫(huà)筆位置
a.setheading(180)//設(shè)置朝向正西
a.pencolor("pink")
a.pendown()//放筆
a.circle(200)

取名字

a.penup()//取名
a.goto(-150,10)
yourname=a.textinput("請(qǐng)老實(shí)回答","你的名字是?")
name=yourname+"崽崽"
a.pendown()
a.write(name,font=("elephant",25,"bold"))//打印文本

畫(huà)眼睛

a.penup()//畫(huà)左眼
a.goto(-200,0)
a.pendown()
a.circle(25)
a.penup()
a.goto(-200,-14)
a.pendown()
a.circle(9)
a.penup()//光暈
a.goto(-190,-20)
a.pencolor("white")
a.pendown()
a.dot(10)
a.penup()//畫(huà)右眼
a.pencolor("pink")
a.goto(0,0)
a.pendown()
a.circle(25)
a.penup()//光暈
a.goto(0,-14)
a.pendown()
a.circle(9)
a.penup()
a.goto(-10,-20)
a.pencolor("white")
a.pendown()
a.dot(10)

畫(huà)鼻子

a.penup()//畫(huà)鼻子
a.speed(10)//設(shè)置畫(huà)筆速度
a.pencolor("pink")
a.goto(-150,-75)
a.setheading(45)
a.pendown()
for i in range(90):
 a.forward(1.5)
 a.right(1)
for i in range(3): //圓化棱角,每轉(zhuǎn)16度向前走3個(gè)像素
 a.right(16)
 a.forward(3)
a.forward(15)
for i in range(3): //圓化棱角
 a.right(16)
 a.forward(3)
a.setheading(225)
for i in range(90):
 a.forward(1.5)
 a.right(1)
for i in range(3): //圓化棱角
 a.right(16)
 a.forward(3)
a.forward(15)
for i in range(3): //圓化棱角
 a.right(16)
 a.forward(3)
a.penup()
a.speed(5)//設(shè)置畫(huà)筆速度
a.goto(-125,-70)//第一條杠
a.setheading(270)
a.pendown()
a.forward(50)
a.penup()
a.goto(-70,-65)//第二條杠
a.pendown()
a.forward(55)

畫(huà)嘴巴

a.penup()//畫(huà)嘴巴
a.speed(10)//設(shè)置畫(huà)筆速度
a.goto(-135,-165)
a.setheading(305)
a.pendown()
for i in range(120):
 a.forward(1)
 a.left(1)

畫(huà)耳朵

a.penup()//畫(huà)右耳朵
a.speed(5)
a.setheading(0)
a.goto(-17,90)
a.pendown()
a.forward(60)
a.penup()
a.goto(28,75)//跳到下一筆起始位置
a.setheading(45)
a.pendown()
a.forward(110)
a.right(45)
a.forward(40)
a.setheading(225)
a.forward(40)
a.setheading(270)
for i in range(7): //圓化棱角
 a.right(2.5)
 a.forward(10)
a.forward(80)
a.penup()//畫(huà)左耳朵
a.goto(-183,90)
a.setheading(180)
a.pendown()
a.forward(60)
a.penup()
a.goto(-230,75)//跳到下一筆起始位置
a.setheading(135)
a.pendown()
a.forward(110)
a.left(45)
a.forward(40)
a.setheading(-45)
a.forward(40)
a.setheading(270)
for i in range(10): //圓化棱角
 a.left(2.5)
 a.forward(15)

畫(huà)腮紅

a.penup()//畫(huà)左腮紅
a.pencolor("tomato")//設(shè)置成番茄色
a.goto(-250,-100)
a.setheading(270)
a.pendown()
a.forward(20)
a.penup()
a.goto(-210,-100)
a.pendown()
a.forward(20)
a.penup()//畫(huà)右腮紅
a.goto(10,-100)
a.pendown()
a.forward(20)
a.penup()
a.goto(50,-100)
a.pendown()
a.forward(20)
a.done() //留存圖像在畫(huà)布上

獻(xiàn)上完整源代碼

#!/usr/bin/env python3.7 #指明用什么可執(zhí)行程序運(yùn)行這個(gè)文件代碼
#-*- coding:UTF-8 -*- #保證能順利解析中文
#author:Boosirit time:2020/4/5
import turtle as a
a.screensize(400,300)#設(shè)置屏幕大小
a.setup(width=400,height=300)#設(shè)置畫(huà)布大小
a.pensize(15)#設(shè)置畫(huà)筆寬度
a.speed(5)#設(shè)置畫(huà)筆速度
a.hideturtle()#隱藏畫(huà)筆
a.penup()#畫(huà)臉
a.goto(-100,100)
a.setheading(180)#設(shè)置朝向正西
a.pencolor("pink")
a.pendown()
a.circle(200)
a.penup()#取名
a.goto(-150,10)
yourname=a.textinput("請(qǐng)老實(shí)回答","你的名字是?")
name=yourname+"崽崽"
a.pendown()
a.write(name,font=("elephant",25,"bold"))#打印文本
a.penup()#畫(huà)左眼
a.goto(-200,0)
a.pendown()
a.circle(25)
a.penup()
a.goto(-200,-14)
a.pendown()
a.circle(9)
a.penup()#光暈
a.goto(-190,-20)
a.pencolor("white")
a.pendown()
a.dot(10)
a.penup()#畫(huà)右眼
a.pencolor("pink")
a.goto(0,0)
a.pendown()
a.circle(25)
a.penup()#光暈
a.goto(0,-14)
a.pendown()
a.circle(9)
a.penup()
a.goto(-10,-20)
a.pencolor("white")
a.pendown()
a.dot(10)
a.penup()#畫(huà)鼻子
a.speed(10)#設(shè)置畫(huà)筆速度
a.pencolor("pink")
a.goto(-150,-75)
a.setheading(45)
a.pendown()
for i in range(90):
 a.forward(1.5)
 a.right(1)
for i in range(3):#圓化棱角,每轉(zhuǎn)16度向前走3個(gè)像素
 a.right(16)
 a.forward(3)
a.forward(15)
for i in range(3):#圓化棱角
 a.right(16)
 a.forward(3)
a.setheading(225)
for i in range(90):
 a.forward(1.5)
 a.right(1)
for i in range(3):#圓化棱角
 a.right(16)
 a.forward(3)
a.forward(15)
for i in range(3):#圓化棱角
 a.right(16)
 a.forward(3)
a.penup()
a.speed(5)#設(shè)置畫(huà)筆速度
a.goto(-125,-70)#第一條杠
a.setheading(270)
a.pendown()
a.forward(50)
a.penup()
a.goto(-70,-65)#第二條杠
a.pendown()
a.forward(55)
a.penup()#畫(huà)嘴巴
a.speed(10)#設(shè)置畫(huà)筆速度
a.goto(-135,-165)
a.setheading(305)
a.pendown()
for i in range(120):
 a.forward(1)
 a.left(1)
 
a.penup()#畫(huà)右耳朵
a.speed(5)
a.setheading(0)
a.goto(-17,90)
a.pendown()
a.forward(60)
a.penup()
a.goto(28,75)#跳到下一筆起始位置
a.setheading(45)
a.pendown()
a.forward(110)
a.right(45)
a.forward(40)
a.setheading(225)
a.forward(40)
a.setheading(270)
for i in range(7):#圓化棱角
 a.right(2.5)
 a.forward(10)
a.forward(80)
a.penup()#畫(huà)左耳朵
a.goto(-183,90)
a.setheading(180)
a.pendown()
a.forward(60)
a.penup()
a.goto(-230,75)#跳到下一筆起始位置
a.setheading(135)
a.pendown()
a.forward(110)
a.left(45)
a.forward(40)
a.setheading(-45)
a.forward(40)
a.setheading(270)
for i in range(10):#圓化棱角
 a.left(2.5)
 a.forward(15)
 
a.penup()#畫(huà)左腮紅
a.pencolor("tomato")#設(shè)置成番茄色
a.goto(-250,-100)
a.setheading(270)
a.pendown()
a.forward(20)
a.penup()
a.goto(-210,-100)
a.pendown()
a.forward(20)
a.penup()#畫(huà)右腮紅
a.goto(10,-100)
a.pendown()
a.forward(20)
a.penup()
a.goto(50,-100)
a.pendown()
a.forward(20)
a.done()#留存圖像在畫(huà)布上

想了解更多編程學(xué)習(xí),敬請(qǐng)關(guān)注php培訓(xùn)欄目!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

如何用python畫(huà)豬頭

如何用python畫(huà)豬頭:用python畫(huà)豬頭的方法:首先設(shè)置畫(huà)布和畫(huà)筆,代碼為【a.screensize(400,300)a.setup(width=400,height=300)】;然后畫(huà)臉型,代碼為【.goto(-100,100)】;最后留存圖像在畫(huà)布上即可?!鞠嚓P(guān)學(xué)習(xí)推薦:python視頻】用python畫(huà)豬頭的方法:畫(huà)布和畫(huà)
推薦度:
標(biāo)簽: 豬頭 python 用python
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專題
Top