40423136 陳柏維
import turtle wn = turtle.Screen() wn.bgcolor("lightgreen") tess = turtle.Turtle() tess.shape("turtle") tess.color("blue") tess.penup() # This is new size = 20 for i in range(30): tess.stamp() # Leave an impression on the canvas size = size + 3 # Increase the size on every iteration tess.forward(size) # Move tess along tess.right(24) # ... and turn her wn.mainloop()
烏龜會動耶~動了~他真的在動,一個簡單的東西,能用程式做出來就非常稀奇呀!
雖然照著老師做事勉強可以,不過還是有許多需要改善的部分,個人對這週學習表現給70分