I have to no avail, tried to get the Norwegian letters to be sorted in correct order.
import locale
locale.setlocale(locale.LC_ALL,'no_no')
sorted(list('æøå')) # string is already in correct alphabetical order
only to get this:
['å', 'æ', 'ø']
What am I missing? (using Python 3.6.5)