ls isn’t a file.
ls is a program that lists a directory (hence “ls”).
If “python_games” is a directory, you change to that directory ('cd python_games’ if you are in the directory containing it, or use the full path - 'cd /xxx/yyy/zzz/python_games’), then ls to list the contents.
Note that ls takes a lot of options - ls -la is common.