Which command allows you to check whether Python is installed from the command prompt?
Answer options
A
python --version
B
python install
C
python setup
D
py run
Correct answer: python --version
Explanation
Quick AnswerThe correct answer is python --version because it directly addresses the core logic of Practice Set 1.
python --version displays the installed Python version if Python is available in the command path.