Process.platform returns “win32” for Windows. On Windows a user’s home directory might be C:\Users[USERNAME] or C:\Documents and Settings...
What do I need to look at to see whether I’m on Windows or Unix, etc? 26 s 26 >>> import os >>> os.name 'posix' >>> import platform >>>...