Question: # 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

# 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related General Management Questions!