5. Loops
Feel free to use your laptop if you have it
Ensure I have recorded your completion — failure to do so will result in a grade of 0
I strongly encourage you to work with others in the lab
When you get stuck, do me a favour and ask those sitting around you for help
I want people to get used to working together in the labs
Peer teaching and peer learning is super effective
Note
To obtain full marks for the lab, you must:
Have completed the pre-lab exercises
Have been working on the lab content
Demonstrate competency in the topics
5.1. Pre Lab Exercises
Warning
You must have completed the specified exercises prior to the start of the lab. If you have not come to lab prepared, you will be asked to leave and you will obtain a grade of 0 for the lab.
-
9 What is a “triangle number”? (no
assert
test for this)14 (use
assert
to test instead of theirtest
function)15 (use
assert
to test instead of theirtest
function) — not required, but recommended
Write assertion tests for each of your functions above, except for exercise 9, since it requires
print
5.2. Before Kattis
Write a function
count_to_n_while(n: int):
to print out each number from \(0\) – \((n - 1)\)This function must use a
while
loopThis function will not return anything
Write a function
count_to_n_for(n: int):
to print out each number from \(0\) – \((n - 1)\)This function must use a
for
loopThis function will not return anything
5.3. Kattis Problems
You should be using a scrap piece of paper to work out the ideas for the following problems
The problems you are to solve are getting too complex to try to solve by just coding
Trying to solve problems by just typing away will not yield success
Warning
Ensure that your your completion has been recorded. Failure to do so may result in a grade of 0.