Week 3 Flashcards

1
Q

What does interactive mean?

A

You type directly to Python one line at a time and Python responds

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

What does script mean?

A

You enter a sequence of statements (lines) into a file using a text editor and tell Python to execute the statements in the file

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

What is sequential?

A

Python starts at the beginning and works its way down through the end. That’s sequential stuff.

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

What is a conditional?

A

Now, a conditional is a step that may or may not get executed.

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

What is “n” in this case called”?

A

iteration variable

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