Commit 39908c21 by BellCodeEditor

save project

parent fcd82c09
Showing with 40 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.shape("circle")
pen.color('red')
pen.fillcolor('red')
pen.begin_fill()
for i in range(360):
pen.forward(1)
pen.left(1)
pen.end_fill()
turtle.done()
import turtle
pen=turtle.Pen()
pen.shape("turtle")
pen.color('blue')
pen.fillcolor('blue')
pen.begin_fill()
for i in range(2):
pen.forward(20)
pen.left(90)
pen.forward(10)
pen.left(90)
pen.end_fill()
turtle.done()
import turtle
pen=turtle.Pen()
pen.begin_fill()
for i in range(360):
pen.forward(3)
pen.left(1)
pen.end_fill()
turtle.done()
\ No newline at end of file
import pygame
from pygame import locals
pygame.into()
dldh=pygame.image.load('登录动画.jpg')
pygame.display.update()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment