Python Smallest and Largest Numbers in a List Example
Hey Developer,
Now, let's see post of python smallest and largest numbers in a list. I would like to show you smallest and largest numbers in a list python. This post will give you a simple example of python biggest number in a list. I explained simply about find the lowest number in a list python. follow the below step for python smallest and largest numbers in a list.
There are a few ways to get the smallest and largest number from the list in python. i will give you two examples using for loop with min() to get max and min number from list. so let's see the below examples.
You can use these examples with python3 (Python 3) version.
let's see below a simple example with output:
Example 1:
main.py
myList = [10, 100, 20, 200, 50] # Python Smallest and Largest Numbers in a List Example minValue = min(myList) maxValue = max(myList) print(minValue) print(maxValue)
Output:
10 200
Example 2:
main.py
myList = [10, 100, 20, 200, 50] # Python Smallest and Largest Numbers in a List Example myList.sort() minValue = myList[0] maxValue = myList[-1] print(minValue) print(maxValue)
Output:
10 200
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Largest Number in List Python?
- How to Create a List of Numbers from 1 to 100 in Python?
- How to Check If Element is Present in List Python?
- How to Check If a List is Empty or Not in Python?
- How to Add Multiple Elements to a List in Python?
- How to Count Number of Elements in a List in Python?
- Python List Print All Elements Except First Example
- How to Get Min Value from Python List?
- Python Split String into List of Characters Example
- How to Convert String into List in Python?
- How to Get Unique Elements from List in Python?
- Python Remove Empty String from List Example
- How to Remove Last Element from List in Python?