如何用python畫這個急,如何用python畫這個 急

2022-06-15 05:40:26 字數 4095 閱讀 8560

1樓:

import turtle

# 畫鼻子

def drawnose():

turtle.penup()

turtle.seth(90)

turtle.fd(100)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor('black')turtle.seth(45)

turtle.fd(25)

turtle.seth(135)

turtle.circle(25, 95)turtle.seth(315)

turtle.fd(25)

turtle.end_fill()

# 畫眼睛

def draweyes(seth, fd, r):

turtle.penup()

turtle.seth(seth)

turtle.fd(fd)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor('black')turtle.circle(50)

turtle.end_fill()

turtle.penup()

turtle.circle(50, r)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor('white')turtle.circle(20)

turtle.end_fill()

# 畫臉

def drawface(seth, fd):

turtle.penup()

turtle.seth(seth)

turtle.fd(fd)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor('red')turtle.circle(70)

turtle.end_fill()

# 畫嘴巴

def drawlip():

turtle.penup()

turtle.seth(135)

turtle.fd(250)

turtle.pendown()

turtle.seth(-300)

turtle.circle(30, -65)turtle.begin_fill()

turtle.fillcolor('firebrick')turtle.seth(165)

turtle.fd(140)

turtle.seth(195)

turtle.fd(140)

turtle.seth(-360)

turtle.circle(30, -65)turtle.penup()

turtle.seth(-60)

turtle.circle(30, 65)turtle.pendown()

turtle.seth(-70)

turtle.fd(240)

turtle.circle(55, 140)turtle.seth(70)

turtle.fd(240)

turtle.end_fill()

turtle.seth(-110)

turtle.fd(80)

turtle.begin_fill()

turtle.fillcolor('firebrick')turtle.seth(120)

turtle.circle(120, 123)turtle.seth(-70)

turtle.fd(165)

turtle.circle(55, 140)turtle.seth(72)

turtle.fd(165)

turtle.end_fill()

# 主函式

def main():

turtle.pensize(4)

turtle.hideturtle()

turtle.setup(1000, 600)turtle.speed(10)

turtle.screensize(bg='yellow')drawnose()

draweyes(160, 250, 60)draweyes(-9.5, 530, 230)drawface(195, 600)

drawface(-11, 720)

drawlip()

turtle.done()

if __name__ == '__main__':

main()

2樓:靈魂心界

應該要下一個庫,具體的叫忘了。

如何用python畫出下面這種效果的圖

3樓:天天不看

mplot3d tutorial

這個?quiver

axes3d.quiver(*args, **kwargs)plot a 3d field of arrows.

如何用python畫各種著名數學圖案

如何用 python 畫各種著名數學圖案

4樓:匿名使用者

等角螺線是由笛卡兒在2023年發現的。雅各布.伯努利後來重新研究。他發現等角螺線的許多特性,如等角螺線經過各種適當的變換之後仍是等角螺線。

他十分驚歎和欣賞這曲線的特性,故要求死後刻在自己的墓碑上,並附詞「縱使改變,依然故我」(eadem mutata resurgo)。可惜雕刻師誤將阿基米德螺線刻了上去.

如何用python畫一個koch snowflake

5樓:匿名使用者

再具體些。

koch snowflake不知道是什麼意思。畫在**上還是畫在canvas上。是自動畫出來,還是手工畫?

感覺象是分形,或者是數學的一種圖案。如果是分形,python的源**可以直接搜尋到。

6樓:匿名使用者

這個你自己畫畫咯,不是很難的,自己小心計算角度和每次移動的距離就夠了,寫幾個出來你就懂了,不難的

如何用python畫一條蛇

7樓:騰訊電腦管家

#畫彩色蟒蛇#import turtle def drawsnake(rad,angle,len,neckrad): mycolor=["black","red","red","blue","yellow"] yocolor=["yellow","green","yellow","red","red"] for i in range(len): turtle.

pencolor(mycolor[i]) turtle.circle(rad,angle) #沿著一個圓形爬行# turtle.pencolor(yocolor[i]) turtle.

circle(-rad,angle) turtle.pencolor("green") turtle.circle(rad,angle/2) turtle.

pencolor("yellow") turtle.fd(rad) turtle.pencolor("red") turtle.

circle(neckrad+1,180) turtle.pencolor("green") turtle.fd(rad*2/3)def main():

turtle.setup(1300,800,0,0) #啟**形視窗,寬度,高度,左上角在螢幕中的座標位置,x,y# pythonsize = 30 turtle.pensize(pythonsize) #運動軌跡的寬度,這裡是30畫素# turtle.

seth(-40) #方向為東南方向40°# drawsnake(40,80,5,pythonsize/2)main()

如何用python畫一朵花

8樓:匿名使用者

可以用pil處理影象的時候自己生成**吧,具體不知道你是要做啥?

如何用excel畫地圖,如何用Excel畫地圖

可以畫,麻煩點像word,你可以再別的地方畫好了,插入就可以了。這個是線條顏色你點下選擇紅色去畫吧 怎麼利用excel製作地圖圖表 如何用excel製作中國地圖熱力資料圖 1.第一步是在建立熱圖之前準備向量地圖。以中國的行政地圖為例。每個省的行政區劃地圖可以單獨編輯。2,然後確保excel在啟用之前...

如何用畫數學圖形,如何用word畫數學圖形

第1步,開啟word2003文件視窗,在選單欄依次選擇 插入 物件 選單命令版,如圖所示 第2步,權在開啟的 物件 對話方塊中,切換到 新建 選項卡。在 物件型別 列表中選中 microsoft 公式 3.0 選項,並單擊 確定 按鈕。如何在word中繪製數學中的圖形 第1步,開啟word2003文...

用Python生成excel,如何用Python實現exce

可以使用xlsxwriter 庫實現 如下 import xlsxwriter import sys reload sys 解決中文編碼問題 sys.setdefaultencoding utf 8 建立一個絕對路徑為.test.xlsx的excel檔案workbook xlsxwriter.wor...