Write a function named sum_of_odd that accepts a list of integers and returns the sum of only the odd numbers in that list. For example, given [3, 1, 2, 3], you would return 7 (3 + 1 + 3).
sum_of_odd
[3, 1, 2, 3]