w3resource

Python: First even and odd number in a given list of numbers

Python List: Exercise - 137 with Solution

Write a Python program to find the first even and odd number in a given list of numbers.

Sample Solution:

Python Code:

# Define a function 'first_even_odd' that finds the first even and odd numbers in a list
def first_even_odd(nums):
    # Use 'next' to find the first even number, default to -1 if not found
    first_even = next((el for el in nums if el % 2 == 0), -1)
    # Use 'next' to find the first odd number, default to -1 if not found
    first_odd = next((el for el in nums if el % 2 != 0), -1)
    return first_even, first_odd

# Create a list of numbers 'nums'
nums = [1, 3, 5, 7, 4, 1, 6, 8]

# Print a message indicating the original list of numbers
print("Original list:")
# Print the contents of 'nums'
print(nums)

# Find the first even and odd numbers in the list using the 'first_even_odd' function
print("\nFirst even and odd number of the said list of numbers:")
# Call the 'first_even_odd' function with 'nums', then print the result
print(first_even_odd(nums)) 

Sample Output:

Original list:
[1, 3, 5, 7, 4, 1, 6, 8]

First even and odd number of the said list of numbers:
(4, 1)

Flowchart:

Flowchart: First even and odd number in a given list of numbers.

Python Code Editor:

Previous: Write a Python program to remove duplicate words from a given list of strings.
Next: Write a Python program to sort a given mixed list of integers and strings. Numbers must be sorted before strings.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.