Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
pygame_lesson10_diy01
This project
Loading...
Sign in
Toggle navigation
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
888affc4
authored
Mar 09, 2024
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
1d161ee1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
30 deletions
my_Tetris.py
q.py
vvvv.py
wdaw.py
my_Tetris.py
View file @
888affc4
import
pygame
def
htfg_input
():
from
pygame
import
locals
total
=
[]
while
True
:
pygame
.
init
()
# 初始化
unit
=
input
(
"请输入(q退出):"
)
score
=
0
if
unit
==
"q"
:
grid_size
=
20
# 格子大小
break
grid_num_width
=
15
# 横向格子数量
else
:
grid_num_height
=
25
# 纵向格子数量
try
:
FPS
=
30
unit
=
int
(
unit
)
except
:
# 创建窗口
print
(
"rjgboerodsuhn"
)
screen
=
pygame
.
display
.
set_mode
((
460
,
500
))
else
:
pygame
.
display
.
set_caption
(
"俄罗斯方块"
)
total
.
append
(
unit
)
clock
=
pygame
.
time
.
Clock
()
# pygame时钟,控制游戏速度(帧数)
print
(
total
)
# 载入素材
result
=
def
htfg_input
():
background
=
pygame
.
image
.
load
(
'bg.png'
)
total
=
[]
font
=
pygame
.
font
.
Font
(
'STKAITI.TTF'
,
60
)
# 字体
while
True
:
unit
=
input
(
"请输入(q退出):"
)
while
True
:
if
unit
==
"q"
:
for
event
in
pygame
.
event
.
get
():
break
if
event
.
type
==
locals
.
QUIT
:
else
:
exit
()
total
.
append
(
unit
)
print
(
total
)
# 将背景图画上去
htfg_input
()
???
\ No newline at end of file
# 得分
???
# 刷新画面
pygame
.
display
.
update
()
clock
.
tick
(
FPS
)
q.py
0 → 100644
View file @
888affc4
b
=
[
"a"
,
"b"
,
"c"
,
"d"
,
"e"
]
a
=
[
"e"
]
b
.
pop
(
3
)
print
(
b
)
b
.
remove
(
"a"
)
a
.
insert
(
1
,
"w"
)
c
=
[
"s"
,
"f"
]
a
.
extend
(
c
)
print
(
a
)
vvvv.py
0 → 100644
View file @
888affc4
import
turtle
turtle
.
penup
()
turtle
.
goto
(
-
100
,
-
100
)
turtle
.
pendown
()
turtle
.
forward
(
200
)
turtle
.
left
(
90
)
turtle
.
forward
(
200
)
turtle
.
left
(
90
)
turtle
.
forward
(
200
)
turtle
.
left
(
90
)
turtle
.
forward
(
200
)
turtle
.
penup
()
turtle
.
goto
(
0
,
0
)
turtle
.
pendown
()
turtle
.
circle
(
10
)
turtle
.
fillcolor
(
"red"
)
turtle
.
begin_fill
()
turtle
.
circle
(
10
)
turtle
.
end_fill
()
turtle
.
penup
()
turtle
.
goto
(
-
40
,
0
)
turtle
.
pendown
()
turtle
.
circle
(
10
)
turtle
.
fillcolor
(
"red"
)
turtle
.
begin_fill
()
turtle
.
circle
(
10
)
turtle
.
end_fill
()
turtle
.
penup
()
turtle
.
goto
(
40
,
0
)
turtle
.
pendown
()
turtle
.
circle
(
10
)
turtle
.
fillcolor
(
"red"
)
turtle
.
begin_fill
()
turtle
.
circle
(
10
)
turtle
.
end_fill
()
turtle
.
done
()
wdaw.py
0 → 100644
View file @
888affc4
bros
=
[
"刘备"
,
"关羽"
,
"张飞"
]
for
i
in
range
(
len
(
bros
)):
print
(
bros
[
i
])
bros
[
0
]
=
"关羽"
bros
[
1
]
=
"刘备"
print
(
bros
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment