Write functionmoreOdds that accepts one argument, a list of…

Question Answered step-by-step Write functionmoreOdds that accepts one argument, a list of… Write  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>>> moreOdds( [2,3,4] )False>>> moreOdds( [2,3,4,5] )False>>> moreOdds( [2,2,5,5] )False  Computer Science Engineering & Technology Python Programming CS MISC Share QuestionEmailCopy link Comments (0)