Python Programming - Chapters 1 to 6
Exam Questions & Answers
IDLE - ANSWERS-Python's Integrated DeveLopment Environment, a program that lets you write
code, test and debug, all in the one place.
Monty Python - ANSWERS-A British surreal comedy group after which Python was named.
= - ANSWERS-assignment operator
<variable> = <expression> - ANSWERS-assignment statement
import <module> - ANSWERS-loads an existing Python module into the current program
block - ANSWERS-one of more lines of code grouped together with the same minimum amount
of indentation
while <condition>: - ANSWERS-begins a pre-test loop
if <condition>: - ANSWERS-begins a binary selection statement
break - ANSWERS-tells the program to immediately jump out of a while-block
def <function name>: - ANSWERS-Indicates the beginning of a function definition
Exam Questions & Answers
IDLE - ANSWERS-Python's Integrated DeveLopment Environment, a program that lets you write
code, test and debug, all in the one place.
Monty Python - ANSWERS-A British surreal comedy group after which Python was named.
= - ANSWERS-assignment operator
<variable> = <expression> - ANSWERS-assignment statement
import <module> - ANSWERS-loads an existing Python module into the current program
block - ANSWERS-one of more lines of code grouped together with the same minimum amount
of indentation
while <condition>: - ANSWERS-begins a pre-test loop
if <condition>: - ANSWERS-begins a binary selection statement
break - ANSWERS-tells the program to immediately jump out of a while-block
def <function name>: - ANSWERS-Indicates the beginning of a function definition