Sort functionPython patternEdit on GitHubThe sort($list) function sorts a list of items in ascending order, based on the lexical order of the items. Try it on your code Apply with the Grit CLIgrit apply sort_fnTest caseBEFORE Editlist = [a, c, b, "1,3,4"]AFTER list = ["1,3,4", a, b, c]