Hello All, I am new in python and I want to learn how to run a python script in Linux and other platforms. Can anyone Running the Hello, World! Python Script Using IDLE, It would be helpful for me or suggest some references.
Hi @ankitdixit ,
It's really easy, follow this steps:
To run Python scripts with the python command, you need to open a command-line and type in the word python , or python3 if you have both versions, followed by the path to your script, just like this: $ python3 hello.py Hello World!