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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!