Computer Science, asked by muskanchourey75, 1 month ago

how to print your python IDE version​

Answers

Answered by vijay0981
0

Answer:

Check Python version from command line / in script

1 .Check the Python version on the command line: --version , -V , -VV.

2. Check the Python version in the script: sys , platform. Various information strings including version number: sys.version. Tuple of version numbers: sys.version_info. Version number string: platform.python_version()

Explanation:

Similar questions