Question: Q: # Exercise 5 Create a function named `divisible_seven_not_five` that accepts `start` and `stop`. It will be return all the numbers between start and stop
Q:
# Exercise 5 Create a function named `divisible_seven_not_five` that accepts `start` and `stop`. It will be return all the numbers between start and stop that are divisible by 7 but not a multiple of 5.
**Function argument:** This function will take two argumens `(start, stop)`.
**What does it do?:** This function create a list of numbers between start and stop that are divisible by 7 but not a multiple of 5.
**What it returns?:** Returns a list of numbers between start and stop that are divisible by 7 but not a multiple of 5.
For instance:
`divisible_seven_not_five(2, 45)`
should return
`[7, 14, 21, 28, 42]`
**Note:** Your code goes in the below cell.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
