Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to find python version

python --version
Comment

how to check which python version is installed

# new way to know about python version in your windows pc,follow the steps below
step-1:Open CMD
step-2:write py --version
Congratulations!Now you know the version of python in your PC.
Comment

how to know the version of python using cmd

#checking using cmd
python --version
#using python script to get version 
import os
os.system("python --version")
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 :: scatter plot plotly 
Python :: perfect number program in python 
Python :: tkinter change button text 
Python :: seaborn heatmap text labels 
Python :: replace value column by another if missing pandas 
Python :: string to float python pandas 
Python :: logging the terminal output to a file 
Python :: how to pick a random number in a list python 
Python :: How to replace both the diagonals of dataframe with 0 in pandas 
Python :: distribution plot with curve python 
Python :: plt normalized histogram 
Python :: python print string separated by comma 
Python :: jupyter notebook set default directory 
Python :: install python3 6 ubuntu 20 
Python :: trimming spaces in string python 
Python :: password combination python 
Python :: pandas read chunk of csv 
Python :: python pynput letter key pressed 
Python :: python datetime with timezone 
Python :: python check numpy arrays equal 
Python :: read xls file in python 
Python :: python move item in list to end 
Python :: python merge two dictionaries 
Python :: get requests from python 
Python :: remove blank spaces from a list python 
Python :: %matplotlib inline 
Python :: python requests cookies 
Python :: how to draw in pygame 
Python :: decode html python 
Python :: python count hex 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =