Online Editor Link (Fork this): LINK Alternatively, you can…
Online Editor Link (Fork this): LINK Alternatively, you can also use the editor here: LINK Write a function process_range(n) where n is an integer greater than 1. The function should print a series of numbers from 1 to n, but with the following transformations: For every number that is divisible by 3, print “Triple” instead of the number For every number that is both divisible by 3 and divisible by 2, print “EvenTriple” If the number does not meet any of the above conditions, simply print the number. You do not need to return anything from the function, just have it print directly. Example outputs: process_range(10):12Triple45EvenTriple78Triple10 ——————————– process_range(15):12Triple45EvenTriple78Triple1011EvenTriple1314Triple