Create a Python function called sumOfOdds which takes one argument, an integer greater thanor equal to 1, and returns the result of adding the odd integers between 1 and the value of thegiven argument (inclusive). This function does not print. Do not use Python's sum() function.Do not build a list. You may assume that the argument is valid. Here are some examples of how your function should behave: it needs to be a for loop.