Python – How to find the WLST python version

How to find the WLST python version… here is a solution to the problem.

How to find the WLST python version

How to find the WLST python version in Weblogic. As we all know, WLST is written in python.

And Python 2 and Python 3 are architecturally and bitwise different. Considering Windows OS, Python 2 is available for 64-bit. As far as I know, Python 3 is still 32-bit. Python is the simplest high-level language known and is widely used in many industries, but is classified as versions 2 and 3.

When I was working at WLST, I wondered what Python version it consists of.

When the version of Weblogic is different, it will be different. However, how do you find out if there is a specific command or function when running in the WLST shell

?

Solution

This command prints the version of Python used by WLST:

print (sys.version)

Related Problems and Solutions