I am looking to have a program be used in English or French. I have a settings file that they can use to specify the language.
What would be the best way to program for multi languages?
language = “French”
if language == “French”: print(“Bonjour”)
if language == “English”: print(“Hello”)
submitted by /u/Alongsnake
[link] [comments]
r/learnpython I am looking to have a program be used in English or French. I have a settings file that they can use to specify the language. What would be the best way to program for multi languages? language = “French” if language == “French”: print(“Bonjour”) if language == “English”: print(“Hello”) submitted by /u/Alongsnake [link] [comments]
I am looking to have a program be used in English or French. I have a settings file that they can use to specify the language.
What would be the best way to program for multi languages?
language = “French”
if language == “French”: print(“Bonjour”)
if language == “English”: print(“Hello”)
submitted by /u/Alongsnake
[link] [comments]