|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
代码如下:
import pygame
import sys
# 初始化Pygame
pygame.init()
size = width, height = 600, 400
speed = [-2, 1]
bg = (255, 255, 255) # RGB
# 创建指定大小的窗口 Surface
screen = pygame.display.set_mode(size)
# 设置窗口标题
pygame.display.set_caption("窗口标题")
# 加在图片
turtle = pygame.image.load("turtle.PNG")
# 获得图像的位置矩形
position = turtle.get_rect()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
# 移动图像
position = position.move(speed)
if position.left < 0 or position.right > width:
# 翻转图像
turtle = pygame.transform.flip(turtle, True, False)
# 反方向移动
speed[0] = -speed[0]
if position.top < 0 or position.bottom > height:
speed[1] = -speed[1]
# 填充背景
screen.fill(bg)
# 更新图像
screen.blit(turtle, position)
# 更新界面
pygame.display.flip()
# 延迟10毫秒
# pygame.time.delay(10)
我是3.6的Python和pygame,照着小甲鱼教程的程序(即上面这段代码),输入python的开发平台pycharm后,运行一直显示错误,运行栏错误显示如下:
s\Admin\PycharmProjects\shiyan\venv\Scripts\python.exe C:/Users/Admin/Desktop/78讲/pg_1.py
Traceback (most recent call last):
File "C:/Users/Admin/Desktop/78讲/pg_1.py", line 1, in <module>
import pygame
ModuleNotFoundError: No module named 'pygame'
Process finished with exit code 1
用Python程序直接运行的话,则出现一个黑色背景框,标题是对的,但是出不来里面的图片内容,运行一秒后就闪退了,求助大神解答一下问题在哪里
|
|