Find largest number in a list of numbers - Python
There are multiple ways to find the largest number in a list using Python. Here are 2 basic methods I have used regularly.
Using max() function
# list
my_list = [10, 20, 4, 45, 99]
# printing the last element
print("Largest element is:", max(my_list))
Sort the list in ascending order & print last element
# list
my_list = [10, 20, 4, 45, 99]
# sorting the list
my_list.sort()
# printing the last element
print("Largest element is:", my_list[-1])
Recent Posts
- Streamlining Development - Our Journey with Git, Bitbucket, and Jira
- The Amazing Adventure - Solving the Mysteries of a WooCommerce Store
- Installing Docker Compose in Linux Mint 20
- Using PostgreSQL database with Django
- Solve "ValueError invalid literal for int() with base 10" - Python
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.