Question: nOdd(t) Write the function nOdd that takes a tuple t and returns an integer, the number of odd integers in the tuple. Sample input t
nOdd(t)
Write the function nOdd that takes a tuple t and returns an integer, the number of odd integers in the tuple.
Sample input t = (-2, 0, -3, 99, 120, 121)
Expected output = 3
(I keep getting output = 1 from the code below)
def nOdd(t): count = 0 for i in range (len(t)): if t[i] % 2 == 0: count += 1 return count
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
