“Versão de verificação do Python” 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

Verifique a versão do Python

python3 --version
Azad Kshitij

Versão de verificação do Python

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

Respostas semelhantes a “Versão de verificação do Python”

Perguntas semelhantes a “Versão de verificação do Python”

Mais respostas relacionadas para “Versão de verificação do Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código