Answer:
def productOfOdds(t):
if len(t) == 1:
if t[0] % 2 == 1:
return t[0]
else:
return 1
else:
if t[0] % 2 == 1:
return t[0] * productOfOdds(t[1:])
else:
return productOfOdds(t[1:])
t = (1, 2, 3, 4, 5, 6, 7, 8, 9)
print("Product of odd elements:", productOfOdds(t)