Question
Asked By – Mark Ransom
When multiple directories need to be concatenated, as in an executable search path, there is an os-dependent separator character. For Windows it’s ';'
, for Linux it’s ':'
. Is there a way in Python to get which character to split on?
In the discussions to this question How do I find out my python path using python? , it is suggested that os.sep
will do it. That answer is wrong, since it is the separator for components of a directory or filename and equates to '\\'
or '/'
.
Now we will see solution for issue: How to get the PATH environment-variable separator in Python?
Answer
This question is answered By – SilentGhost
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0