None of previous similar questions worked for me at least those ones that I saw.
I want to set locale to my desired language. But I get this error.
unsupported locale setting
I don't know what am I doing wrong. I am using Windows 10 and Python 3.5.2
This is my code:
import locale
locale.setlocale(locale.LC_ALL, 'ar_BH.utf8')
print("لحرب في سوريا: طائرات الجيش السوري تشن غارات جوية كثيفة جديدة على مناطق المعارضة شرق حلب")
I also tried
locale.setlocale(locale.LC_ALL, 'ar_BH')
But still doesn't work. Thanks in advance.