[solved] – Question 75360
2.Write a function moreOdds that accepts one argument, a list of integers. The function then returns a bool that indicates whether the list contains(strictly) more odd numbers than even numbers. Sample output:
>>> moreOdds( [2,3,4,5,7] )
True
Expert Answer
OR

