0
how to switch language?
how to switch language? in the program python
8 Answers
+ 3
well I am not sure but I reckon it is possible.
cyrillic chars have ascii codes so why wouldn’t it be possible?
so I suggest you do a google search for “how to output cyrillic chars python” and “ascii cyrillic python”
+ 2
sorry what? can you explain a bit further?
+ 1
This might get you started as per Brave Tea's suggestion
I have found it very useful
https://code.sololearn.com/cGWzAmvq725S/?ref=app
0
that is when you write the print output command to write not in English but in other languages
0
I guess that's not possible
0
thanks for the answer
0
Thanks
0
How about populating a dict, example:-
mydict = {'hello': 'salut', 'good afternoon': 'bonne après-midi', 'good evening': 'Bonsoir', 'goodby': 'au revoir'}
print(mydict['hello'])
print(mydict['good afternoon'])
print(mydict['good evening'])
print(mydict['goodby'])