

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check whether product of 'n' numbers is even or odd in Python
Suppose we have an array nums. We have to check whether the product of these numbers is even or odd.
So, if the input is like nums = [5,7,4,2,6], then the output will be Even, as the multiplication is 1680 and this is even.
To solve this, we will follow these steps −
- for i in range 0 to size of nums - 1, do
- if nums[i] is even, then
- return "Even"
- if nums[i] is even, then
- return "Odd"
Let us see the following implementation to get better understanding −
Example Code
def solve(nums): for i in range(len(nums)): if not nums[i] & 1: return "Even" return "Odd" nums = [5,7,4,2,6] print(solve(nums))
Input
[5,7,4,2,6]
Output
Even
- Related Questions & Answers
- Check whether given floating point number is even or odd in Python
- C++ Program to Check Whether Number is Even or Odd
- Check whether the length of given linked list is Even or Odd in Python
- Java Program to Check Whether a Number is Even or Odd
- Check whether product of digits at even places is divisible by sum of digits at odd place of a numbers in Python
- Check if count of divisors is even or odd in Python
- 8085 program to check whether the given number is even or odd
- Python Program for Check if the count of divisors is even or odd
- Adding only odd or even numbers JavaScript
- Python Program to Determine Whether a Given Number is Even or Odd Recursively
- Java program to find whether given number is even or odd
- How to Check if a Number is Odd or Even using Python?
- Check if product of digits of a number at even and odd places is equal in Python
- Finding the sum of two numbers without using '+', '-', '/', '*' in JavaScript
- Largest Even and Odd N-digit numbers in C++
Advertisements