Software Engineers need to be expert in their tools. You can’t Google or AI everything and call yourself an expert. Your job interviews will not entail these resources anyway.
This is the multi-page printable view of this section. Click here to print.
PP. Programming Practice
1 - Week 2
For all of the following, write both the function and some code that calls and tests the function.
Complete the following without using ANY outside aid. If necessary, refer only to the python help() command or the official documentation at https://python.org.
Use your preferred programming environment (IDLE, Pycharm, Visual Studio Code, etc.)
- Write a function with two parameters: a string and an integer
n. Using a for loop, print the stringntimes. - Write a function with one parameter: a list. Print each element of the list using a for loop.
- Write a function with two parameters: a list and a
target. Using a for loop, count the number of timestargetappears in the list and print the total. - Write a function with two parameters: a list and a
target. Using a while or for loop, print the first index in the list wheretargetappears. Printnot presentif it does not exist in the list. - Write a function with one parameter: a list of integers. Using a loop, count the number of even and odd integers in the list. Print the total count of evens and odds.
Solutions
There are a few ways to solve each problem. Here are a few: week2-soln.py
Submission
Submit your .py file to Canvas for a check. You are not graded on completeness or correctness – this is for learning and feedback.
Key Skills
- Function definition with parameters.
- Function calling.
- Selection using
if-else. - Iteration using a
forloop and working with the listindex. - Combining iteration and selection.
2 - Week 3
Instructions
For all of the following, write both the function and some code that calls and tests the function.
Complete the following without using ANY outside aid. If necessary, refer only to the python help() command or the official documentation at https://python.org.
Use PyCharm to complete this task. I know that PyCharm has a built-in AI Assistant. I strongly recommend that you disable it. You are going to be quizzed on these skills in class, and you will not be allowed to use any outside assistance.
- Write a function named
multiply()with two parameters,aandb, that returns the result.- Verify that both
aandbare integers. - Return nothing if either
aorbis not an integer.
- Verify that both
- Write a function named
divide()with two parameters,aandb, that returns the result ofa/b.- Verify that both
aandbare either integers. - Return nothing if either
aorbis not a number. - Return nothing if
bequals0.
- Verify that both
- Write a
calculatorfunction- The function must contain an “infinite” while loop that does the following until the user chooses to ’exit'.
- Prompt the user to make a choice of either
multiply,divide, orexit. - Do not allow or handle an invalid choice.
- If the user picks
exit, the program must end. - Prompt the user to enter two values,
aandb. - Based on their choice, call either your
multiply()ordivide()function. - If either
multiply()ordivide()returns nothing, print an error message. - Otherwise, print the result in the format, e.g,
4 * 5 = 20or2.4 / 1.2 = 2.0. - Round the
divideresult to the tenths place using the built-inround()function when printing.
Submission
Submit your .py file to Canvas for a check. You are not graded on completeness or correctness – this is for learning and feedback.
Key Skills
- Function definition: parameters and returns.
- Logical selection using
if. - Type checking using
isinstance(). - Functions calling functions.