Tools, FAQ, Tutorials:
Printing Python Engine Information
How to print out Python engine information?
✍: FYIcenter.com
Here is a Python example on how to print out Python engine information:
>>> import sys >>> sys.getwindowsversion() sys.getwindowsversion(major=6, minor=1, build=7601, platform=2, service_pack='Service Pack 1') >>> sys.executable 'C:\\Users\\fyicenter\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe' >>> sys.version '3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)]' >>> sys.implementation namespace(cache_tag='cpython-36', hexversion=50725616, name='cpython', version=sys.version_info(major=3, minor=6, micro=2, releaselevel='final', serial=0)) >>> sys.modules.keys() dict_keys(['builtins', 'sys', '_frozen_importlib', '_imp', '_warnings', '_thread', '_weakref', '_frozen_importlib_external', '_io', 'marshal', 'nt', 'winreg', 'zipimport', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_weakrefset', 'site', 'os', 'errno', 'stat', '_stat', 'ntpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', 'sysconfig', 'atexit']) >>> sys.flags sys.flags(debug=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode=0, no_user_site=0, no_site=0, ignore_environment=0, verbose=0, bytes_warning=0, quiet=0, hash_randomization=1, isolated=0)
⇒ sys.argv - Command Line Argument List
2018-11-11, 1607🔥, 0💬
Popular Posts:
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...