“Como verificar a versão python em cmd” Respostas de código

Como verificar a versão python

# 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)
SkelliBoi

Como verificar qual versão python está instalada

# 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.
Mohammad Jami

Como verificar a versão python em cmd

python --version
Curious Civet

Verifique a versão do Python

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)
David Cao

Como verificar a versão python

python --version #in command line

python #or by enterng interactiv mode
SimTheGreat

Verifique a versão do Python

python3 -v
Hilarious Hamerkop

Respostas semelhantes a “Como verificar a versão python em cmd”

Perguntas semelhantes a “Como verificar a versão python em cmd”

Mais respostas relacionadas para “Como verificar a versão python em cmd” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código