Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to check python version

# To check your Python version in the command line use:
python --version

# To check your Python verson inside a script use:
import sys
print(sys.version)
Comment

check python version

# To check Python version 
python -V
----or----
python --version
Comment

check python version

# 2 ways to check python version
# In the terminal/cmd write the following:

# Way 1
python -V

# Way 2
python -c "import sys; print(sys.version)"
Comment

check python version

python --versrion
print(sys.version_info)
# sys.version_info(major=3, minor=8, micro=3, releaselevel='final', serial=0)

import platform
print(platform.python_version())

import sys
print(sys.version)
Comment

check python version

python3 --versionpip3 --version
Comment

how to check python version

python --version #in command line

python #or by enterng interactiv mode
Comment

python version check

# In Command Prompt Type 
python -V

# V is Capital 
Comment

check python version

# To check your Python version in the command line use:
py --version
Comment

check python version

python3 -v
Comment

how to know the version of python

Step 1: Type Command Prompt on search icon near the windows icon
Step 2: On Command Prompt Execute the below command
Step 3: python --version
Comment

PREVIOUS NEXT
Code Example
Python :: python snake game 
Python :: run file as administrator python 
Python :: download pdf using python 
Python :: plot bounds python 
Python :: hide password input tkinter 
Python :: or statement django template 
Python :: location of python in cmd 
Python :: colab read xlsx 
Python :: bisect_left in python 
Python :: make coordinate cyclic in python 
Python :: Update label text after pressing a button in Tkinter 
Python :: python text fromatting rows 
Python :: python open folder in explorer 
Python :: check django version 
Python :: python backward difference 
Python :: scoop bucket add extras 
Python :: python logging to file 
Python :: how to make python remove the duplicates in list 
Python :: nlargest hierarchy series pandas 
Python :: pyperclip copy paste 
Python :: use of // in python 
Python :: how to sort values in python from dictionary to list 
Python :: python print unicode character 
Python :: python voice recognition 
Python :: install python selenium webdriver 
Python :: pygame.display.flip vs update 
Python :: select all columns except one pandas 
Python :: dataframe row 
Python :: remove outliers in dataframe 
Python :: create a list of characters python 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =