I have a problem with the pygame module, pygame.image.load() to be exact. And the problem is that no matter if I write the full directory of the png that I want to load (from C: until the file) or if I write part of the directory, or I just type the name of the png + extension (player.png) or even just player, it always gives me an error and here is the list
full directory: SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
half of the directory: No such file or directory
just the name + extension: No such file or directory
just the name: No such file or directory
(And yes, I made sure that the program and the files are in the same folder and already checked multiple multiple websites like github or pygame.org itself)