+ 2
Can you use command prompt to program python
3 odpowiedzi
+ 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.
+ 1
Why not? Use vim, emacs or nano to edit your files. The question is - why?
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