Using Python Flashcards

1
Q

Program that can read Python programming statements and execute them

A

Python interpreter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The interpreter can be used in what two modes?

A
  1. Interactive mode

2. Script mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Interpreter waits for you to type Python statements on the keyboard

A

Interactive mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The interpreter reads the contents of a file that contains Python statements, then executes each statement as it reads it

A

Script mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

when the Python interpreter is running in interactive mode, it is commonly called the ___

A

Python shell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Prompt that indicates the interpreter is waiting for you to type a Python statement

A

> > >

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Extension given to Python program that identify it is a Python program

A

.py

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Single program that gives you all of the tools you need to write, execute, and test a program

A

Integrated development environment (IDLE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly