Similar Posts

Subscribe
Notify of
9 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
J0T4T4
5 months ago

You probably want PyCharm or at least some text editor with Syntax Highlighting.

mnlwrnr
1 month ago

To compile Python programs in EXE files, you need to install the following Python package: pyinstaller. This is done with the following command: pip3 install pyinstaller Also the dependencies are resolved.

This is how we compile it: for this you save the Python program in an empty folder. Then you call the command prompt from this folder. Then you enter the following command: pyinstaller –onefile namedeProgramms.py

The compilation is started. When this is completed, you will find 3 more folders in the folder where the Python program is located. The EXE file is located in one of the 3 folders. This is run independently without Python.

geheim007b
5 months ago
geheim007b
5 months ago

what you mean is an IDE with syntax highlighting

https://www.google.com/search?q=python+syntax+highlighting

typically e.g. visual studio

regex9
5 months ago

Visual Studio has been offering good support for Python for years through the Python tools.

https://learn.microsoft.com/de-de/visualstudio/python/installing-python-support-in-visual-studio?view=vs-2022

geheim007b
5 months ago

Sorry, I meant. PyCharm is also recommended

J0T4T4
5 months ago

Visual Studio is not really intended for Python, VS code is good, PyCharm is the other known alternative.

WeissBrot965
5 months ago

What does that have to do with the compiler? Simply install the Colorama Package to print colored text