Write and execute a PYTHON program to perform the following tasks
1.To asks a number and test the number whether it is multiple of 5 or not, divisible by 7 but not by eleven.
Expert's answer
number=int(input("Enter a number: "))
ifnumber%5 == 0:
print(f"{number} is multiple of 5")
else:
print(f"{number} is NOT multiple of 5")
ifnumber%7 == 0andnumber%11 != 0:
print(f"{number} is divisible by 7 but not by eleven.")
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!