ch04: update from book draft

This commit is contained in:
Luciano Ramalho
2020-02-19 00:10:33 -03:00
parent a9fb6dc48a
commit b000813f15
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import locale
my_locale = locale.setlocale(locale.LC_COLLATE, 'pt_BR.UTF-8')
print(my_locale)
fruits = ['caju', 'atemoia', 'cajá', 'açaí', 'acerola']
sorted_fruits = sorted(fruits, key=locale.strxfrm)
print(sorted_fruits)