Python interpreter configuration checking on June 01, 2022 Get link Facebook X Pinterest Email Other Apps This is accomplished by using the sys library.import sysprint(sys.executable)This prints the location of the python interpreter in use.import sysprint(sys.version)This prints the version of the python interpreter in use. Comments
Comments
Post a Comment