pygame
关于pygame PyGame是SDL库的Python包装器。SDL是一个跨平台库,用于访问计算机多媒体硬件组件(声音,视频,输入等)。SDL是一个非常强大的工具,用于构建各种各样的东西,但它是用C语言编写的,C很难,所以我们使用PyGame。 github网址: https://github.com/pygame/pygame 安装 pip install pygame C:\Users\huang>pip install pygame Collecting pygame Downloading https://files.pythonhosted.org/packages/ed/56/b63ab3724acff69f4080e54c4bc5f55d1fbdeeb19b92b70acf45e88a5908/pygame-1.9.6-cp37-cp37m-win_amd64.whl (4.3MB) 100% |████████████████████████████████| 4.3MB 55kB/s Installing collected packages: pygame Successfully installed pygame-1.9.6 基础对象 屏幕对象 首先,我们需要一张画布,我们称之为“屏幕”,它是我们绘画的平台。为了创建一个屏幕,我们需要调用 pygame