Multilingual concern about python code?

Viewed 126

Say I had the following code-

homeDir = os.path.expanduser("~")
fullPath = homeDir + "/.config"
print fullPath

Would this code still function properly for someone in say, Japan, who's home directory was composed of Kanji?

My concern is that python won't know how to add the two languages together, or even know what to do with the foreign characters.

2 Answers
Related