How to Get Only Negative Values in Python List?
Hey Friends,
Here, I will show you how to work how to get negative items from python list. If you have a question about how to get only negative value from list in python then I will give a simple example with a solution. I would like to share with you how to make negative numbers from python list. If you have a question about how to take only negative values in python list then I will give a simple example with a solution.
In this examples, i will take on myList list variable with positive and negative values. Then i will use filter and sorted() function to get only negative value from python list. so let's see the following example.
You can use these examples with python3 (Python 3) version.
let's see below a simple example with output:
Example 1:
main.py
# Create New List with Item myList = [-3, -2, -1, 1, 2, 3, 4, 5, 6, 7] # Python list get positive values newList = [item for item in myList if item < 0] print(newList)
Output:
[-3, -2, -1]
Example 2:
main.py
# Create New List with Item myList = [-3, -2, -1, 1, 2, 3, 4, 5, 6, 7] # Python list get positive values newList = sorted(item for item in myList if item < 0) print(newList)
Output:
[-3, -2, -1]
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
- Python List Get All Items Less Than Some Value Example
- Python List Get All Elements Greater Than Some Value Example
- Python Convert List to String with Space Example
- How to Get Last n Elements of a List in Python?
- How to Get Last 2, 3, 4, 5, 10, etc Elements from List in Python?
- Python List Replace Double Quotes with Single Example
- How to Add Element to a List in Python?
- Python List Print All Elements Except First Example
- How to Convert List to Lowercase in Python?
- Python Split String into List of Characters Example
- How to Remove Duplicate Values from List in Python?
- How to Remove null Values from the List in Python?
- Python Get Second Last Element of List Example
- How to Remove Last Element from List in Python?