Write a function in Python 3 (v. 6175+) calledmultiplicity00794. The function should receive alimit number andreturn:
• how many multiples of 3 or 5 or 7 there are that are less than orequal to the specified limit.
• the sum of the multiples of 3 or 5 or 7 that are less than orequal to the specified limit.
• the product of the multiples of 3 or 5 or 7 that are less than orequal to the specified limit.
For example, if the function is invoked with 15 it should return 9(because there are 9 multiples of 3, 5 or 7 less than or equalto
than 15: 3, 5, 6, 7, 9, 10, 12, 14 and 15), 81 (because 3 + 5 + 6 +7 + 9 + 10 + 12 + 14 + 15 = 81) and 142884000 (because
3 * 5 * 6 * 7 * 9 * 10 * 12 * 14 * 15 = 142884000).