Computed fields
Earlier, on Python with Pets
Here's a goats' scores data set we've been using, with errors removed.
Here's a goats' scores data set we've been using, with errors removed.
What is a list?
We're going to add validation loops to the tip program. It's a topic that confuses some people.
Uh oh.
Don't worry, we'll take it easy. Let's start with a simple task.
What's a float in Python?
while
practice, and an exercise.
What does this output? Answer without running the code.
A while loop has the form:
condition
is either true or false, just like an if
uses. Python will keep doing action
while condition
is true.
We saw loops using string variables in the condition:
Keep asking the user until they enter something valid.