How to download Python, best IDE and ready to code
Python Start
In this article
- How to download python
- best IDE
- ready to code
Related Articles
- Python Programming
- Python Basic
- Python OOP
- Flask Quickstart
- How to create a website with Python Flask
- Jinja Templates
- RESTFUL API
If you just want to test some python code, you can try on replit or pythonanywhere online IDE.
Best Online IDE for Python
Python Download
when you finish, try the code below in terminal or command line
python --version
If something wrong, check Environment Variables in your computer
Popular IDE and Code Editor for Python
If you are ready,
print(“Hello, World!”)
Pycharm
Right Click in the main.py and Click “Run main.py”
“Hello, World!” will print in terminal.
Vistual Studio Code
Extensions -> type python in the search box -> install python extension
inside a folder create a file called main.py and
type the code below
run (Right Click in main.py and click “Run Python File in Terminal”)
Sublime Text 3
create a file called main.py and
type the code below
run (you have to run in command line or terminal)
go to the folder and type “python main.py” or “python3 main.py”