Typing through Chapter 1 of Slatkin, 2015. How to get the version of the Python being used from the terminal and from within a module:
In [1]:
    
import sys
print(sys.version)
print(sys.version_info)
    
    
In [ ]:
    
    
In [ ]: