Turtle畫正弦曲線

Turtle畫正弦曲線

來自專欄 Python自修筆記8 人贊了文章

01 畫一條正弦曲線

import turtle import math window=turtle.Screen() #creat a screen pen=turtle.Turtle() pen.pu()pen.setx(-300)pen.sety(100*math.sin(-300/40))pen.pd()for i in range(-300,300): pen.setx(i) pen.sety(100*math.sin(i/40))window.exitonclick()

02 從下往上,畫七條正弦曲線

import turtle import math window=turtle.Screen() #creat a screen pen=turtle.Turtle() pen.pencolor("red")pen.speed(0)for j in range(-150,200,50): pen.pu() pen.setx(-300) pen.sety(100*math.sin(-300/40)+j) pen.pd() for i in range(-300,300): pen.setx(i) pen.sety(100*math.sin(i/40)+j)window.exitonclick()

推薦閱讀:

螺栓、螺釘、螺絲三個概念,別再傻傻分不清
自學php的一些經驗
CNC數控行業的同仁們,大家辛苦了
.net core項目實戰之基於Restful API+Swagger項目搭建
零基礎自學編程,這些免費的編程入門教程可以幫助你!

TAG:Python入門 | 自學編程 |