4 < 5) and (2 < 0) (
False
Reading: Think Python Chapter 6
A function can have any number of arguments. We’ve defined functions with no arguments and one argument. Multiple arguments are similar:
multiple_args.py
Arguments are passed into the function in the same position as the function call. Since 3
is the first argument, it becomes a
when the function is called; likewise 4
becomes b
.
Remember: if you define a function as needing a certain number of arguments, it must be called with that number of arguments. Otherwise, you’ll get an error.
Conditional expressions can be combined and modified with three additional logic operators: and
, or
, and not
.
and
operator will evaluate to True
if both sides of the and
are True
.A |
B |
A and B |
---|---|---|
True |
True |
True |
True |
False |
False |
False |
True |
False |
False |
False |
False |
or
operator will evaluate to True
if either (or both) sides of the or
are True
.A |
B |
A or B |
---|---|---|
True |
True |
True |
True |
False |
True |
False |
True |
True |
False |
False |
False |
not
operator reverses any boolean coming after it.We can look at examples of these expressions using the interpreter:
These evaluate to bools - which means they can be used with conditionals!
We’ll now look at an example of how to execute a program “by hand.”” That is, how to trace a program’s execution by methodically following its execution step-by-step. At first this will appear tedious, but it is critical to a firm understanding of how programs execute, and eventually to writing your own programs.
For our example, let’s look at this very simple program:
Let’s now dive into the longer version, just for the sake of understanding.
To make best use of this, open this same page in another browser, and have the program side-by-side, as you read what’s below.
Ready? Let’s trace through:
print(1)
. This prints out 1, and moves to the next line.j
= 2
at the start of the outer for
loop:j
is 2, it’s within the range, and we enter the outer for
loop.
for
loop, where i
is set to 0range
has only one number specified, it’s understood to be the upper limit. The upper limit is the current value of j
, which is 2.print(1)
,which, because j
is now 2, will print 2.i
increments to 1:The output currently looks like:
1
22
Then, at the end of the inner for
loop, we return to the top where i
increments to 2. Since i
is at the limit, we exit the inner for
loop.
Notice: the inner loop iterated twice. Next, we go past the inner loop to print()
, which goes to the beginning of the next line.
The print
statement here completes the first iteration of the outer loop, after which we go to the top of the outer loop and increment j
.
Execution now enters the outer loop with j
set to 3.
for
loop, where i
is set to 0 The upper limit is the current value of j
, which is 3.i
first set to 0, then to 1, then to 2.i
becomes 3, it hits the inner loop’s limit and proceeds to the print()
that follows. The output so far is:1
22
333
This completes the iterations of the inner loop with the outer loop j
set to 3. Next, j
becomes 4
i
set to 0.i
increments.i
hits the limit j
(which is 4 now).print()
, which goes to the next line. The output so far is1
22
333
4444
Finally at the end of the outer loop, j
becomes 5 and hits the limit of the outer loop
Yes, that was long. But doing this many times will help you understand how to read programs. Later, you will become good at this and will, with a quick glance at the inner loop, say “This prints 2
twice in the first iteration of the outer loop.”
Rewrite the multiple_digits
function from the notes, using a different sequence of if
, elif
and else
statements (with different conditions).
Rewrite the smaller
function from the notes. Keep the existing functionality, but add a check to see if the input arguments are numbers (ints or floats). If either argument isn’t a number, return False
.
Write a function even_smaller
that takes three integer arguments and returns the smallest of the three. You can assume that the arguments are all integers.
Write a function n_times
that takes two arguments. The first is an integer, the second is a string. If the integer is greater than 0, return the string “multiplied” by the integer:
n_times(1, "ok")
returns string "ok"
n_times(3, "times")
returns string "timestimestimes"
If the integer is less than 1, return an empty string ""
.
Recall: using the *
operator between a string and an integer will repeat the string in the manner desired. Try it out in the interpreter.
Write a function i_before_j
that takes two arguments, both strings. Return a string in the format shown below, with the correct alphabetical order between the two strings:
i_before_j('dog', 'cat')
returns string 'cat before dog'
i_before_j('coffee', 'supper')
returns string 'coffee before supper'
i_before_j('practice', 'success')
returns string practice before success'
Remember that >
and <
between strings is based on alphabetical order.
Homework problems should always be your individual work. Please review the collaboration policy and ask the course staff if you have questions.
Double check your file names, printed output, and return values. These need to be exact matches for you to get credit.
Going forward, you will need to write functions that return instead of print. Confusing these two is a common error - take care to avoid it!
Write a function ordered_triple
that takes three arguments, all numbers.
Return a string consisting of the three numbers in numerical order, smallest to largest, separated by spaces, with no trailing space:
ordered_triple(5, 2, 3)
returns string '2 3 5'
ordered_triple(1, 0, 1)
returns string '0 1 1'
ordered_triple(1, -2, -3)
returns string '-3 -2 1'
Do not use built-in or library functions that sort, find minimum, or find maximum.
Submit as ordered_triple.py
.
Write a function three_or_four
. It will take one argument, which will be one of these:
Threes:
3
3.0
'3'
'three'
Fours:
4
4.0
'4'
'four'
Return either int 3
or int 4
, corresponding to the input value.
three_or_four('four')
returns int 4
three_or_four(3)
returns int 3
Submit as three_or_four.py
Write a function three_digits
that takes a single integer argument and returns True
if the integer has exactly three digits and False
otherwise.
three_digits(-123)
returns True
three_digits(1001)
returns False
three_digits(101)
returns True
three_digits(-20)
returns False
three_digits(-300)
returns True
Submit as three_digits.py
.
Write a function seq_omit
that takes three arguments, each a positive integer. Return a string consisting of sequential integers, starting at the smallest argument, skipping the middle-valued argument, and ending with the largest argument. The arguments will all be different values.
Examples:
seq_omit(1, 3, 6)
returns string '1 2 4 5 6'
seq_omit(3, 1, 6)
returns string '1 2 4 5 6'
seq_omit(5, 4, 2)
returns string '2 3 5'
seq_omit(2, 1, 4)
returns string '1 3 4'
Do not use built-in or library functions that sort, find minimum, or find maximum.
Submit as seq_omit.py
.