python入門turtle庫簡單繪圖(螺旋曲線圖)
阿新 • • 發佈:2018-12-17
從入門學習python還是有點時間裡,CSDN還是幫了我很多忙,這幾天寫了幾個簡單的turtle繪圖,哈哈,興趣所致,所以來分享一下我的三個程式碼,純粹原創,不喜勿噴嘛
我用的是VSCODE,個人覺得挺好用的,就是turtle的報錯還沒找到解決方案,不過問題不大 第一個,最簡單的正方形螺旋曲線圖 我將它稱為 :轉圈圈1.0
import turtle n = 500 turtle.penup() turtle.goto(-450,150) turtle.pendown() turtle.pencolor("blue") for i in range(500): n = n - 1 #n -= 1 turtle.speed(100) turtle.fd(n) turtle.right(90) turtle.pendone() # 轉圈圈1.0
提前設定畫筆的位置起點為(-450,150)調整畫筆顏色為藍色,然後一個for迴圈,依次讓畫筆繪製的距離減短,for迴圈中
turtle.fd(n) 的n值迴圈一次就減一,然後就有了最基礎的版本轉圈圈1.0
結果圖如下:
好了最簡單的完成了,接下來就開始新增東西,我可以用
n -= 1
# 讓繪製的影象從邊框繪製到中心,那麼也就可以用
n += 1
#讓繪製的影象從中心繪製到邊框
ok 轉圈圈1.1出爐
import turtle n = 0 # turtle.penup() turtle.goto(-450,150) turtle.pendown() turtle.pencolor("blue") for i in range(500): n = n + 1 # #n += 1 turtle.speed(100) turtle.fd(n) turtle.right(90) turtle.pendone() # 轉圈圈1.1
轉圈圈1.1結果如下:
有#號的地方就是和1.0有區別的地方
馬上到來轉圈圈1.2 ,可以把1.0和1.1融合到一張圖,重合兩張圖或者重新擡筆換起點都可以
import turtle n = 500 turtle.speed(100) turtle.penup() turtle.goto(-450,150) turtle.pendown() turtle.pencolor("blue") for i in range(1000): if i < 500: n = n - 1 turtle.fd(n) turtle.right(90) else: n+=1 turtle.pencolor('red') turtle.fd(n) turtle.right(90) turtle.pendone() #轉圈圈1.2
執行結果如下:
接下來,就再次增加新的東西一層一層的分顏色來繪製 因為我的n值為800,然後取了8個顏色(黑紅橙黃綠藍藍靛紫)
import turtle
turtle.penup()
turtle.goto(-450,300)
turtle.pendown()
turtle.speed(100)
n = 800
for i in range(10000):
n -= 1
if 800 >= n >700:
turtle.pencolor('purple')
elif 700 >= n > 600:
turtle.pencolor("indigo")
elif 600 >= n > 500:
turtle.pencolor("blue")
elif 500 >= n > 400:
turtle.pencolor("green")
elif 400 >= n > 300:
turtle.pencolor("yellow")
elif 300 >= n > 200:
turtle.pencolor("orange")
elif 200 >= n > 100:
turtle.pencolor("red")
elif n > 0:
turtle.pencolor("black")
else:
turtle.done()
turtle.fd(n)
turtle.right(90)
#轉圈圈1.3
執行結果如下:
在這個基礎上,設定了n的取值大於0,當n的取值小於零了又會怎樣?想想看,列如下面的第一行程式碼,相對於第二行的繪製肯定是繪製方向相反,按照設定的n-=1 ,n值小於零過後絕對值越來越大,那麼繪製的螺旋曲線應該越來越大,那麼,在上圖基礎上覆蓋一層顏色上去,那麼就成了我們的轉圈圈1.4
turtle.fd(-100)
turtle.fd(100)
修改最後的elif和else的判斷,即成為轉圈圈1.4
import turtle
turtle.penup()
turtle.goto(-450,300)
turtle.pendown()
turtle.speed(100)
n = 800
for i in range(10000):
n -= 1
if 800 >= n >700:
turtle.pencolor('purple')
elif 700 >= n > 600:
turtle.pencolor("indigo")
elif 600 >= n > 500:
turtle.pencolor("blue")
elif 500 >= n > 400:
turtle.pencolor("green")
elif 400 >= n > 300:
turtle.pencolor("yellow")
elif 300 >= n > 200:
turtle.pencolor("orange")
elif 200 >= n > 100:
turtle.pencolor("red")
elif n > 0:
turtle.pencolor("black")
# else:
# turtle.pendone()
elif n <= -800:
turtle.pendone()
# turtle.pencolor("white")
else:
turtle.pencolor("black")
turtle.fd(n)
turtle.right(90)
#在這裡,註釋掉了轉圈圈1.3裡面的幾行程式碼,轉圈圈1.4出爐
在轉圈圈1.4中,判斷語句設定其繪製從小到大的過程覆蓋用的顏色為黑色
執行結果如下