Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python sort case insensitive

# Basic syntax:
sorted(your_list, key=str.lower)
# Where:
#	- the key parameter specifies a function (or other callable) that is
#		called on each list element prior to making comparisons. Here, we
#		sort your_list as though all the elements were lowercase

# Example usage 1:
your_list = ["Z", "zebra", "A", "apple"]
sorted(your_list) # without key
--> ['A', 'Z', 'apple', 'zebra']

sorted(your_list, key=str.lower) # with key
--> ['A', 'apple', 'Z', 'zebra']

# Example usage 2:
# Say you want to sort the keys of a dictionary by their last letter:
your_dictionary = {'this': 3, 'example': 4, 'be': 5, 'banana': 1}
sorted(your_dictionary.keys(), key=lambda i: i[-1])
--> ['banana', 'example', 'be', 'this']
Comment

PREVIOUS NEXT
Code Example
Python :: python sum of 10 numbers from user input 
Python :: how to check if a list is empty in python 
Python :: compare two excel files using python pandas 
Python :: how to use underscore in python 
Python :: how to transcode a video in python using ffmpeg 
Python :: print statements 
Python :: Python NumPy asfarray Function Example List to float type array 
Python :: diccionario python 
Python :: python if something exception 
Python :: coding 
Python :: addition array numpy 
Python :: to text pandas 
Python :: TypeError: view must be a callable or a list/tuple in the case of include(). 
Python :: # get the largest number in a list and print its indexes 
Python :: class views django slug 
Python :: how to print multiple integers in python in different line 
Python :: Get git sha 
Python :: show only lower diagonal in sns pairplot 
Python :: py to flag converter online 
Python :: In is_lodes_form( : Missing id-axis pairings. 
Python :: ist comperension python 
Python :: python converter to c 
Python :: python update pip windows 
Shell :: ubuntu list running services 
Shell :: how to install pil in anaconda 
Shell :: dotnet ef not found 
Shell :: git clean cache 
Shell :: mysqlclient install ubuntu 
Shell :: ubuntu tweak 
Shell :: installing java on linux 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =