harry- take a small ball game

More children's programming can contact Hou, micro-channel data_ecology
This link: https://blog.csdn.net/houlaos/article/details/102760915
# 1.导入工具包
import pygame
# 2.初始化
pygame.init()
# 3.设置窗口
pygame.display.set_mode((700,600))

while True:
    pygame.display.update()  # 4.刷新


pygame.quit() # 退出游戏

·
·
·
·
·
·

Guess you like

Origin blog.csdn.net/houlaos/article/details/102760915