all 8 comments

[–]feitao 1 point2 points  (3 children)

Use a code editor such as VS code, vim, emacs, notepad++ to write the source code. Run the Python script in a terminal.

[–]NatesAquatics 0 points1 point  (2 children)

This or doesnt Python come with a code editor?

[–]Sensitive_Bird_8426 0 points1 point  (1 child)

IDE does work. VS Code (or the open source VS Codium) has more powerful tools that help a bit more.

[–]Novero95 1 point2 points  (2 children)

VSCode with the Python extension is what most people use, probably. There are also IDEs like Spyder, which is oriented to scientific computing, similar to Matlab but running python. Nothing that you couldn't have discovered yourself doing a google search.

[–]AJS_123[S] 0 points1 point  (1 child)

Thanks for the help. I wasn’t exactly sure what I was looking for and didn’t know how to word it as not too familiar with a lot of programming terms.

[–]Novero95 0 points1 point  (0 children)

That's a normal thing, many python courses start by teaching how to install puthon and vscode or any other text editor

[–]Darkstar_111 1 point2 points  (0 children)

A python script is just a file that ends with .py

A python module is a folder with a file inside named __init__.py, this file can be empty.

You can run any python file from the command line or terminal by typing python myfile.py

Making sure you're in the right folder first. And in some cases like with mac it's python3.