Write a Python Program to print the largest Even and Odd numbers in a list :
In this tutorial, we will write one python 3 program to find out the_ largest odd and even number_ in a list. The user will enter all the numbers to store in the list. Next, we will run one _loop _to find out the largest even and odd numbers. We will use one loop to read the numbers to the list. You can use one already populated list but we will take the numbers from the user here.
The list is a collection to hold items in python. All items are placed inside a square bracket []. The items are separated with a comma. A list can hold items of different datatypes. For this example, we are using only _integer _values.
To access an item in a list, the index _is used. The index of the items starts from _0, i.e. the index of the first element is 0, the index of the second element is 1 etc. Using the index, we can access, modify or delete a list item.
Following is the algorithm we are going to use in this example :
The algorithm used to find out the largest even and odd numbers :
- Ask the user how many numbers he wants to add on the list.
- Create one empty list to store all numbers.
- Run one ‘for’ loop and get all the numbers from the user one by one. Read each number and add it to the array.
- Create two variables to store the largest even and largest odd number on the list.
- Now, run one for loop and scan all numbers of the user input list one by one.
- Check for each number: if it is even and greater than the stored largest even number, store it as the largest even. Do the same thing for the odd number also. The variables used to store the largest even number and the odd number will be updated continuously. At the end of the program, these variables will store the final largest even and odd numbers.
- After all elements are scanned, print the largest odd and largest even number or print the variables used to hold the largest odd and even numbers.
Python 3 Program :
# get the total numbers to be stored in the list
total_numbers = int(input("How my numbers you want to add to the list : "))
# create one empty array to store the numbers
numbers_array = []
# run a loop and get the inputs from the user
for i in range(0,total_numbers):
numbers_array.append(int(input("Number to add : ")))
# create two variables to store largest even and odd number of the list
# store -1 to both of these variables
largest_even = -1
largest_odd = -1
# Now scan the array again and update the largest value if found
for i in range(0,total_numbers):
if(numbers_array[i] % 2 == 0 and numbers_array[i] > largest_even):
# even number
largest_even = numbers_array[i]
elif(numbers_array[i] % 2 != 0 and numbers_array[i] > largest_odd):
# odd number
largest_odd = numbers_array[i]
# All numbers are scanned. Now print the largest odd and even value
print("Largest Odd Number : ",largest_odd)
print("Largest Even Number : ",largest_even)
You can also download the program from here.
Example Output :
Conclusion :
In this tutorial, we have learned how to find the largest odd and even numbers in a list. In this program, we have initialized the largest odd and even numbers as_ -1_. But we can also initialize both of them as the first number of the list. We can start the loop to iterate from the second number of the list.
Try to run the above example program and drop one comment below if you have any queries.
Similar tutorials :
- Python program to iterate over the list in reverse order
- Python program to remove all occurrence of a value from a list
- How to remove item from a list in python
- Python program to remove all duplicate elements from a list
- Python program to find out the sum of odd and even numbers in a list
- Python program to swap the first and the last element of a list