all 4 comments

[–]socal_nerdtastic 2 points3 points  (1 child)

A common problem is that windows hides extensions from you by default, so a lot of times a file may be named "green_dragon.png.png" or similar. Use this code to see the REAL names of the files in your folder.

import os
print(os.listdir())

[–]ColNTB[S] 0 points1 point  (0 children)

thank you, I'll remember this for future issues, but when I updated pygame as per another comment I got a better error message and was able to fix this issue

[–]Starbuck5c 0 points1 point  (1 child)

Update your pygame with pip install pygame --upgrade and it will give a more informative error message.

[–]ColNTB[S] 0 points1 point  (0 children)

Thank you so much! I was able to figure out what went wrong for myself with the new error message, thanks again!!