HOW TO RUN A PROGRAM IN PYTHON?
Someone pls answer.
Answers
Answered by
1
Answer:
You can install ides like jupyter or a complete software like anaconda which is really helpful.
Or go to command prompt check if python is present
python --version
If it gives version without error then you can write your code
if you want it to be interactive then type python
then it will automatically allow you to write
otherwise save file with .py extension and run it using following
python hello.py
Similar questions