如何用python畫笑臉?首先我們要先下載安裝好python程序,然後再下載安裝turtle包。把一切準備工作做完才能開始我們接下來的繪畫工作。
1.在我們自己的電腦上找到python 的IDLE工具。
2.然後開啟IDLE,新建一個文件,命名為test1.py。
相關推薦:《python影片教學》
#3.接著我們就開始匯入turtle函式庫,然後編輯程式碼。
from turtle import * penup() goto(0,-200) pendown() circle(200) penup() goto(-100,50) pendown() begin_fill() circle(17.5) end_fill() penup() goto(100,50) pendown() begin_fill() circle(17.5) end_fill() penup() goto(0,50) pendown() circle(-70,steps=3) penup() goto(-150,-70) pendown() right(15) goto(0,-170) goto(150,-70) hideturtle()
4.F5運行程式碼,查看效果圖。
以上是如何用python畫笑臉的詳細內容。更多資訊請關注PHP中文網其他相關文章!