Question: In python please Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between
In python please
Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between two numbers x and y. Your program should only accept positive values for x and y The numbers obtained should be printed in a comma-separated sequence on a single line. If no numbers found, your program should print a message saying "No numbers found between x and y" Example: Enter x: 10 Enter y:40 14,21,28 Example: Enter x:30 Enter y:40
Step by Step Solution
There are 3 Steps involved in it
Certainly Below is a Python program to solve the problem python def findnumbersx y Create an empty l... View full answer
Get step-by-step solutions from verified subject matter experts
