Results 1 to 2 of 2

Thread: Check Python Interpreter Version

  1. #1
    Join Date
    Mar 2019
    Posts
    12

    Check Python Interpreter Version

    Are there any way to check the Python interpreter version without entering the Python shell or writing Python script?

  2. #2
    Join Date
    May 2019
    Posts
    7
    You can use the Python command to get the Python interpreter version. For the default Python installation use
    python -v
    OR for Python2
    python2 -v
    Or Python3
    python3 -v

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •