Issue
i installed Raspbian on my Raspberry Pi and it has Python 3 IDLE to write code. What confuses me is, that if i execute "python" in the command of my Raspberry Pi, it says the Python version is 2.7? Can someone help?
Solution
As long as it won't cause you any issues, you can try running python3
. If you have Python 2 and 3 installed, from my experience python
usually runs Python 2, so I guess you'll have to be specific.
Answered By - miike3459