background = pygame.image.load('example.jpg')
nubjuk = pygame.image.load('nubjuk.png')
nubjuk = pygame.transform.scale(nubjuk, (200,90))
This is the code part of the problem and the error message is:
Exception has occurred: error Couldn't open example.jpg
I think I've tried every solution uploaded in other StackOverflow questions.(os.path ~, absolute path, just anything) However, they don't work. More weird thing is that it properly worked yesterday, but even though I didn't touch anything it doesn't work today.
What's the problem?