11 lines
114 B
Python
11 lines
114 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import calendar
|
||
|
import datetime
|
||
|
|
||
|
import locale
|
||
|
|
||
|
# Setup locale
|
||
|
|
||
|
print(locale.getlocale())
|