Take a list, say for example this one:
and write a program that prints out all the elements of the list that are less than 5.
Extras:
a
that are smaller than that number given by the user.This week’s topics:
This week’s exercise hits on a topic critical for all types and styles of programming: lists. Lists are basically an ordered way of grouping things (called elements) - the cool thing about lists in Python is that you can have a list that contains objects of multiple types. Your list can mix between strings, integers, objects, other lists, what have you.
The way to construct an empty list is just to do
And your variable x
now holds an empty list. To add things to this list, just “append” them to the list. Like so:
Your list x
now looks like [3]
.
In Python, lists are also iterables, which means you can loop through them with a for loop in a convenient way. (If you come from other languages like C++ or Java you are most likely used to using a counter to loop through indices of a list - in Python you can actually loop through the elements.) I will let the code speak for itself:
Will yield the result:
There are many other properties of lists, but for the basic exercise all you should need is this for loop property. Future weeks will address other properties of lists.
For more information about lists in Python, check out these resources:
The nice thing about conditionals is that they follow logical operations. They can also be used to test equality. Let’s do a small example. Let’s say I want to make a piece of code that converts from a numerical grade (1-100) to a letter grade (A, B, C, D, F). The code would look like this:
What happens if grade
is 50? All the conditions are false, so "F"
gets printed on the screen. But what if grade
is 95? Then all the conditions are true and everything gets printed, right? Nope! What happens is the program goes line by line. The first condition (grade >= 90) is satisfied, so the program enters into the code inside the if
statement, executing print("A")
. Once code inside a conditional has been executed, the rest of the conditions are skipped and none of the other conditionals are checked.