Commit d9097c8a by BellCodeEditor

auto save

parent b566e3f9
Showing with 11 additions and 0 deletions
list1 = [1,2,3,4]
list2 = [[0,0,0,0],
[0,0,0,0],
[0,0,0,0],
[1,1,1,1]]
info = zip(list1,list2)
for i in info:
print(i)
......@@ -117,9 +117,11 @@ while True:
(cube[1] * 20-20, cube[0] * 20-20, 20, 20), 0)
pygame.draw.rect(screen, (255, 255, 255),
(cube[1] * 20-20, cube[0] * 20-20, 20, 20), 1)
for i,row in zip(num_list,)
# 得分
text_surface = font.render(str(score), True, (0, 0, 0))
screen.blit(text_surface, (350,70))
# 刷新画面
pygame.display.update()
clock.tick(FPS)
\ 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