Python添加png图片出现的问题和解决

Python添加png图片出现的问题

#加载一个png图片
import pygame,sys
pygame.init()
screen=pygame.display.set_mode([640,480])
screen.fill([255,255,255])

my_ball=pygame.image.load(“caixukun.png”)

my_ball=pygame.image.load(“C:/______/caixukun.png”)

my_ball=pygame.image.load(r"caixukun.png")

my_ball=pygame.image.load(r"C:/_____/caixukun.png")

screen.blit(my_ball,[50,50])
pygame.display.flip()
running=True
while running:
for event in pygame.event.get():
if event.type==pygame.QUIT:
running=False
pygame.quit()

有四种添加png的代码

名称.png

路径/名称.png

r名称.png

r路径/名称.png

______下划线为png路径

单独只有名称的方法会显示以下:
PS D:\PythonDate> python 16-20.py
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
File “16-20.py”, line 102, in
my_ball=pygame.image.load(“caixukun.png”)
pygame.error: Couldn’t open caixukun.png
错误名称,无法打开caixukun.png

必须添加路径名称

添加路径名称之后的运行结果:
Python添加png图片出现的问题和解决_第1张图片

你可能感兴趣的:(Python新手,Python,png,error)