Commit 888affc4 by BellCodeEditor

auto save

parent 1d161ee1
Showing with 78 additions and 30 deletions
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)
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