试了很多次,终于搞明白在什么地方了。不是在python中,也不是在pygame包里面,而是在自己默认的路径中。
如何查看自己默认的路径?
打开cmd,看一下,默认文件夹是什么?
比方说,我的是图片中的地址,把图片放到这个文件夹中,就可以打得开了。
解决了!!!5555555555555555555
代码如下:
import pygame,sys pygame.init() screen=pygame.display.set_mode([3000,3000]) screen.fill([255,255,255]) myball=pygame.image.load("girl.jpg") screen.blit(myball,[0,0]) pygame.display.flip() while True: for event in pygame.event.get(): if event.type == pygame.QUIT: # most reliable exit on x click pygame.quit() raise SystemExit elif event.type == pygame.KEYDOWN: # optional exit with escape key if event.key == pygame.K_ESCAPE: pygame.quit() raise SystemExit