Can you use command prompt to program python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Can you use command prompt to program python

26th Apr 2019, 8:51 PM
Emmanuel Agogo
Emmanuel Agogo - avatar
3 Answers
+ 2
just go to python console (just write "python" in command prompt ). It is really popular in making data analysis. I recommend also jupyter notebook for that.
26th Apr 2019, 10:01 PM
Hubert Dudek
Hubert Dudek - avatar
+ 1
Why not? Use vim, emacs or nano to edit your files. The question is - why?
26th Apr 2019, 9:35 PM
spotbot2k
spotbot2k - avatar
0
Yes. You can you use Python interactively in the command prompt (that is, assuming you have Python installed on your computer and you have added it to the path): >>> python You can exit interactive mode with: >>> exit() You can also write files and execute them in the command prompt: >>> python myfile.py
27th Apr 2019, 2:45 AM
Jessica Wilson
Jessica Wilson - avatar