溫馨提示×

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

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

用python畫豬頭的方法

發(fā)布時(shí)間:2020-09-01 14:54:59 來源:億速云 閱讀:592 作者:小新 欄目:編程語言

小編給大家分享一下用python畫豬頭的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

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

用python畫豬頭的方法

用python畫豬頭的方法:

畫布和畫筆設(shè)置

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

畫臉盤子

a.penup()//提筆
a.goto(-100,100)//移動(dòng)畫筆位置
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()//畫左眼
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()//畫右眼
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()//畫鼻子
a.speed(10)//設(shè)置畫筆速度
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è)置畫筆速度
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()//畫嘴巴
a.speed(10)//設(shè)置畫筆速度
a.goto(-135,-165)
a.setheading(305)
a.pendown()
for i in range(120):
    a.forward(1)
    a.left(1)

畫耳朵

a.penup()//畫右耳朵
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()//畫左耳朵
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()//畫左腮紅
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()//畫右腮紅
a.goto(10,-100)
a.pendown()
a.forward(20)
a.penup()
a.goto(50,-100)
a.pendown()
a.forward(20)
a.done() //留存圖像在畫布上

獻(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è)置畫布大小
a.pensize(15)#設(shè)置畫筆寬度
a.speed(5)#設(shè)置畫筆速度
a.hideturtle()#隱藏畫筆
a.penup()#畫臉
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()#畫左眼
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()#畫右眼
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()#畫鼻子
a.speed(10)#設(shè)置畫筆速度
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è)置畫筆速度
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()#畫嘴巴
a.speed(10)#設(shè)置畫筆速度
a.goto(-135,-165)
a.setheading(305)
a.pendown()
for i in range(120):
    a.forward(1)
    a.left(1)
    
a.penup()#畫右耳朵
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()#畫左耳朵
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()#畫左腮紅
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()#畫右腮紅
a.goto(10,-100)
a.pendown()
a.forward(20)
a.penup()
a.goto(50,-100)
a.pendown()
a.forward(20)
a.done()#留存圖像在畫布上

以上是用python畫豬頭的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

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

AI