Python Forum

Full Version: Project files, Python files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Python Users

I am a beginner in Python. I use the Pycharm editor. I have a project file called Myproject.py. This file is stored in the Pycharm Projects directory. I have 2 python files that I created called prac.py and practice.py. I can't find where these python files are stored.

Are python files actual files?
Depending on os, probably
*nix /home/usrname
windows c:\Users\Username\AppData
what is your OS?
in Linux, cd to a starting directory, then use find:
find . -name Myproject.py
PyCharm should also be able to tell you what the path to the file is. At least in IntelliJ, it's displayed at the top of the window, so one would assume the same for PyCharm.
Thanks everyone I was able to find these files by following the path that PyCharm gave me.