On 03/01/2022 12:45, Joao Marques wrote:
Good morning: I have a very simple question: I want to start writing
programs in Python so I went to the Microsoft Store and installed
Python3.9. No problem so far. I would prefer to have a gui interface, an
interface that I can use file-->Open and File-->Save as, as I see it on
different videos. How can I get it? Because my problem is to run the
programs I have already written and saved on a *.py file in my own working
directory, not in the Python's CWD directory.
Can you please help?
I am running Windows 10 Pro version 20H2

Regards,
Joao


The simplest Python GUI editor is IDLE, which should come installed with with Python. On windows just open the start menu and type 'IDLE'

You can save your python files anywhere - you shouldn't need to save it in Python's working directory. Python doesn't impose any particular file system until you start implement features such as packages which are not something a beginner should ever worry about.

--
Anthony Flury
email : anthony.fl...@btinternet.com

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to