真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何用python畫豬頭

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

成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計、網(wǎng)站制作、臨澧網(wǎng)絡(luò)推廣、微信小程序開發(fā)、臨澧網(wǎng)絡(luò)營銷、臨澧企業(yè)策劃、臨澧品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供臨澧建站搭建服務(wù),24小時服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com

【相關(guān)學(xué)習(xí)推薦: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)//移動畫筆位置
a.setheading(180)//設(shè)置朝向正西
a.pencolor("pink")
a.pendown()//放筆
a.circle(200)

取名字

a.penup()//取名
a.goto(-150,10)
yourname=a.textinput("請老實回答","你的名字是?")
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個像素
    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)行這個文件代碼
#-*- 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("請老實回答","你的名字是?")
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個像素
    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()#留存圖像在畫布上

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


本文題目:如何用python畫豬頭
當(dāng)前路徑:http://weahome.cn/article/cheiid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部