I use Jupyter notebook in a browser for Python programming, I have installed Anaconda (Python 3.5). But I\'m quite sure that Jupyter in running my python commands with the n
from platform import python_version print(python_version())
This will give you the exact version of python running your script. eg output:
3.6.5