Quick actions

cmd+k|ctrl+k

Navigation

Languages

PythonVersionTest

Snippet info

Language

Python

Visibility

public

Author

masterhun

Created

2023-08-08T23:40:44.744947Z

Updated

2023-08-09T00:28:15.380564Z



import sys

print(f"You are using Python {sys.version_info.major}.{sys.version_info.minor}.")

# Output: You are using Python 3.8.


"""

Shell command: 
python --version
Python 3.8.12 

"""

INFO