# Problem 2 - This python function is to check whether a number is in a given range. Using range(1,10). def check_in_range(num): # Checking if the number is in the range from 1 to 9 if num in range(1, ...
# Problem 3-Multiplies all the numbers in a list. It uses the following list: [5, 2, 7, -1]. # This function multiplies all the numbers in a list.