Environment Setup

Setting up python programming environment

download Export
search_insights Statistics
stylus_note White Board
Quran
calculate Calculator
dictionary Dictionary
fullscreen Full Screen
QUESTION OF

volume_mute Read quiz aloud
Views #: 1284
Questions #: 9
Time: 10 minutes
Pass Score: 80.0%
Style
Mode

Python is the same on all operating systems

1 pts
volume_mute
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


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

1 pts
volume_mute
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


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

1 pts
volume_mute
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


Python interpreter

1 pts
volume_mute
>>> 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.

note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


Understanding Python interpreter

1 pts
volume_mute
>>> print("Hello Python interpreter!") 
Hello Python interpreter!

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

Please drag and drop the selected option in the right place or type it instead
>>> prompt
bold text
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


Python is a cross-platform programming language

1 pts
volume_mute

which means it runs on all the major operating systems

note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


Windows operating system always come with Python installed

1 pts
volume_mute
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


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

1 pts
volume_mute
note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation


Check if Python is installed on Windows

1 pts
volume_mute

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

note_alt Add notes
flag Flag
volume_mute

Correct Answer

Explanation

Keywords
Year 10