2020年4月1日

pygame

摘要: ```python import pygame from pygame.locals import (K_SPACE, KEYDOWN, QUIT) class Obj: def __init__(self): self.x = 400 self.y = 300 self.dir = 0 def update(self): # 更新位置 if self.dir == 0: self.up() el 阅读全文

posted @ 2020-04-01 20:54 HolaWorld 阅读(184) 评论(0) 推荐(0) 编辑

pyinstaller打包python应用程序

摘要: 参考: https://blog.csdn.net/weixin_41879093/article/details/104216881 https://blog.csdn.net/qq_41140138/article/details/100833814 阅读全文

posted @ 2020-04-01 18:30 HolaWorld 阅读(163) 评论(0) 推荐(0) 编辑

导航