Python Forum
Python is unable to read file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python is unable to read file
#11
You should create a folder where you want to work on your project. On windows you might create a pygame_tutorial folder in your Documents folder. In this folder you would put your Untitled.jpeg (and give it a better name), other image files, and your python file(s). Now, when you want to work on the pygame_tutorial, just open Documents\pygame_tutorial. I have a shortcut to Documents on my desktop, so it would just be a couple of clicks.

You always want to have support files in the same folder as your program file(s). This lets you use relative paths instead of hardcoded paths. In your example, you should not have the full path for the image file encoded in the python file. You could use a relative path, but that forces you to change to the directory before running your program. I like programs to be independent of their file location, and python makes this easy.
import pygame
from pathlib import Path

WIDTH, HEIGHT = 1000, 800
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption('Asteroid Dodge')
HOME = Path(__file__).parent
BG = pygame.image.load(HOME / "Unkown.jpeg")
Each python module has a variable named __file__ that is the full filename for the file. This can be used to get the home folder for the file. In the code above I use the HOME path to load the background image, which I know resides in the same folder as my python file.
Reply
#12
Oh, sorry. I should clarify that I'm on Mac, not Windows.
Reply
#13
Then do the same sort of thing with mac. Make a folder in a convenient place and put your files there. If you work on multiple, related projects, create folders inside the main folder, one for each project. Eventually you'll start working on larger projects that contain many files. A more sophisticated layout will be required when you get that far.
Reply
#14
As mention almost the same way on Mac,How to create a folder on Mac
On Mac you don't use drive names,just path to folder.
# space.py
import pygame
import time
import random

pygame.init()
WIDTH, HEIGHT = 1000, 800
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption('Asteroid Dodge')

# Load background image, using Mac path
BG = pygame.image.load("/path/to/your/Space.jpg")

# Load spaceship image
SPACESHIP = pygame.image.load("/path/to/your/spaceship.png")
SPACESHIP = pygame.transform.scale(SPACESHIP, (70, 70))

class Spaceship:
    def __init__(self):
        self.img = SPACESHIP
        self.x = WIDTH // 2
        self.y = HEIGHT - 400
        self.vel = 5

    def draw(self, window):
        window.blit(self.img, (self.x, self.y))

    def move(self, keys):
        if keys[pygame.K_LEFT] and self.x - self.vel > 0:
            self.x -= self.vel
        if keys[pygame.K_RIGHT] and self.x + self.vel + self.img.get_width() < WIDTH:
            self.x += self.vel

def main():
    run = True
    clock = pygame.time.Clock()
    spaceship = Spaceship()
    while run:
        clock.tick(60)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                run = False
        keys = pygame.key.get_pressed()
        spaceship.move(keys)
        WIN.blit(BG, (0, 0))
        spaceship.draw(WIN)
        pygame.display.update()
    pygame.quit()

if __name__ == "__main__":
    main() 
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 966 Dec-19-2024, 11:57 AM
Last Post: snippsat
  Read TXT file in Pandas and save to Parquet zinho 2 1,192 Sep-15-2024, 06:14 PM
Last Post: zinho
  Pycharm can't read file Genericgamemaker 5 1,505 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,110 May-03-2024, 07:23 AM
Last Post: Pedroski55
  Recommended way to read/create PDF file? Winfried 3 4,499 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,695 Nov-09-2023, 10:56 AM
Last Post: mg24
  read file txt on my pc to telegram bot api Tupa 0 2,504 Jul-06-2023, 01:52 AM
Last Post: Tupa
  parse/read from file seperated by dots giovanne 5 2,205 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
  Formatting a date time string read from a csv file DosAtPython 5 4,745 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  How do I read and write a binary file in Python? blackears 6 23,744 Jun-06-2023, 06:37 PM
Last Post: rajeshgk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020