Week 3 Flashcards
1
Q
What does interactive mean?
A
You type directly to Python one line at a time and Python responds
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
3
Q
What is sequential?
A
Python starts at the beginning and works its way down through the end. That’s sequential stuff.
4
Q
What is a conditional?
A
Now, a conditional is a step that may or may not get executed.
5
Q
A
6
Q
What is “n” in this case called”?
A
iteration variable
7
Q
A