Dealing with Python versions is like trying to take a nap in a snake pit. --Anon
Run this in a Jupyter cell and it will tell you chich version of Python that notebook is using.
import sys
print(sys.executable)
print(sys.version)
print(sys.version_info)