Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / pygame_lesson3_diy4

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 39908c21 authored 2 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent fcd82c09 c201712l1354p256a13985/wx312648
Show whitespace changes
Inline Side-by-side
Showing with 40 additions and 0 deletions
  • 0.py
  • 1.py
  • 2.py
  • 4.py
  • 登录动画.jpg
0.py 0 → 100644
View file @ 39908c21
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()
This diff is collapsed. Click to expand it.
1.py 0 → 100644
View file @ 39908c21
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()
This diff is collapsed. Click to expand it.
2.py 0 → 100644
View file @ 39908c21
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
This diff is collapsed. Click to expand it.
4.py 0 → 100644
View file @ 39908c21
import pygame
from pygame import locals
pygame.into()
dldh=pygame.image.load('登录动画.jpg')
pygame.display.update()
\ No newline at end of file
This diff is collapsed. Click to expand it.
登录动画.jpg 0 → 100644
View file @ 39908c21
登录动画.jpg

75.7 KB

This diff is collapsed. Click to expand it.
  • Write
  • Preview
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