You can download this code by clicking the button below.
This code is now available for download.
Concatenates two strings and then sorts them alphabetically.
Technology Stack : Built-in function sorted, lambda expression
Code Type : String sort
Code Difficulty : Intermediate
def aaaa(arg1, arg2):
return sorted(arg1 + arg2, key=lambda x: x.lower())