I am a newbie to Python. Where can I write and run programs in Python?
-
I have a text editor, but how do I execute that file and using which commands?
-
Answer:
Some of the ways in which you can run your python code 1) Python IDE(Integrated Development Environment) - There are a lot of IDEs available that support python. https://www.google.co.in/search?q=python+ide&oq=python+ide&aqs=chrome..69i57j0l5.2406j0j1&sourceid=chrome&es_sm=93&ie=UTF-8 2) Command Line - You can run your python program from the command line (cmd in Windows and Terminal in Linux). You need to have python installed on your system for this to work. python filename.py 3) Online IDEs/compilers/interpreters. http://ideone.com/ If you wish to enroll for an online course, the one on CodeAcademy is pretty good. It also has an online python interpreter. Link : http://www.codecademy.com/tracks/python
Rahul Gandhi at Quora Visit the source
Other answers
For writing all your python codes you need to first download the program. For this go to http://python.org and then, go to downloads. Then you select the installer in accordance with your OS. Download and install and thats it. You can now write your python code in the in-built text editor(IDLE) provided by the program.
Amandeep Singh
To run Python code the first thing you need is to setup your computer environment to support it.To do so, take the following steps: Decide which https://wiki.python.org/moin/Python2orPython3 Choose between https://www.python.org/downloads/release/python-351/ or https://www.python.org/downloads/release/python-2711/ and follow your OS instructions to install it. Then you can run your python code by typing "python http://yourcode.py" (without quotes) in your console on Unix/Linux or cmd on Windows. You can also download an IDE (Integrated Development Environment) app, for example https://eclipse.org/downloads/ with http://www.pydev.org/ plugin.Or you can use https://www.jetbrains.com/pycharm/ which is an IDE designed for Python.
Mahdi Bolow
You save them as .py files.In windows explorer you can double click them to run them.You can also run them from the command line/ terminal /shell by invoking python foo.py assuming your file is called http://foo.py.If you run an interactive python console you can type your program line by line.Hope that helps.
Tobias Kommerell
Which text editor do you have? Which operating system are you using? (Is it Windows?)
Bill Bell
Related Q & A:
- Where can I host my Python script?Best solution by Quora
- how can I write this shell script in python?Best solution by Stack Overflow
- Where can I find Licensed Practical Nursing programs?Best solution by Yahoo! Answers
- Where can I find nursing programs in my area?Best solution by Yahoo! Answers
- Where can I find which items I can write off as a 1099 contractor?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.