Files
cursopython2023/aula167.py
2022-12-14 08:15:47 -03:00

10 lines
336 B
Python

# locale para internacionalização (tradução)
# https://docs.python.org/3/library/locale.html
# https://learn.microsoft.com/fr-fr/powershell/module/international/get-winsystemlocale?view=windowsserver2022-ps&viewFallbackFrom=win10-ps
import calendar
import locale
locale.setlocale(locale.LC_ALL, '')
print(calendar.calendar(2022))