Environment Setup

Setting up python programming environment
👁 257
statistics
calculate
Questions #: 9
Time: 10 minutes
Pass Score: 80.0%
Style
Mode

Python is the same on all operating systems

POINTS (1)

Correct Answer

Explanation

Python 3.x is recommended and python 2.x is retired

POINTS (1)

Correct Answer

Explanation

Although Python 3 is recommended to use, some systems still use Python 2 to support older programs

POINTS (1)

Correct Answer

Explanation

Python interpreter

>>> print("Hello Python interpreter!") 
Hello Python interpreter!

You can run Python’s interpreter in a terminal window, allowing you to try bits of Python code without having to save and run an entire program.

POINTS (1)

Correct Answer

Explanation

Understanding Python interpreter

>>> print("Hello Python interpreter!") 
Hello Python interpreter!

The (1) transparent indicates that you should be using the terminal window, and the (2) transparent is the code you should type in and then execute by pressing ENTER

drag and drop the selected option to the right place
>>> prompt
bold text
POINTS (1)

Correct Answer

Explanation

Python is a cross-platform programming language

which means it runs on all the major operating systems

POINTS (1)

Correct Answer

Explanation

Windows operating system always come with Python installed

POINTS (1)

Correct Answer

Explanation

Sublime Text is a beginner-friendly editor which can be used to program for Python

POINTS (1)

Correct Answer

Explanation

Check if Python is installed on Windows

Open a command window by entering command into the Start menu or by holding down the shift key while right-clicking on your desktop and selecting Open command window here from the menu. In the terminal window, enter python in lowercase.  You will know if Python installed if

POINTS (1)

Correct Answer

Explanation

Views:
Trials:
Avg score:
0
sin cos tan
sin-1 cos-1 tan-1 π e
xy x3 x2 ex 10x
y√x 3√x √x ln log
( ) 1/x % n!
7 8 9 + MS
4 5 6 M+
1 2 3 × M-
0 . EXP ÷ MR
± RND C = MC

Document Actions