Commit 888affc4 by BellCodeEditor

auto save

parent 1d161ee1
Showing with 78 additions and 30 deletions
import pygame
from pygame import locals
pygame.init() # 初始化
score = 0
grid_size = 20 # 格子大小
grid_num_width = 15 # 横向格子数量
grid_num_height = 25 # 纵向格子数量
FPS = 30
# 创建窗口
screen = pygame.display.set_mode((460, 500))
pygame.display.set_caption("俄罗斯方块")
clock = pygame.time.Clock() # pygame时钟,控制游戏速度(帧数)
# 载入素材
background = pygame.image.load('bg.png')
font = pygame.font.Font('STKAITI.TTF', 60) # 字体
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
exit()
# 将背景图画上去
???
# 得分
???
# 刷新画面
pygame.display.update()
clock.tick(FPS)
def htfg_input():
total=[]
while True:
unit=input("请输入(q退出):")
if unit=="q":
break
else:
try:
unit=int(unit)
except:
print("rjgboerodsuhn")
else:
total.append(unit)
print(total)
result = def htfg_input():
total=[]
while True:
unit=input("请输入(q退出):")
if unit=="q":
break
else:
total.append(unit)
print(total)
htfg_input()
\ No newline at end of file
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)
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()
bros = ["刘备","关羽","张飞"]
for i in range(len(bros)):
print(bros[i])
bros[0] = "关羽"
bros[1] = "刘备"
print(bros)
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