What do I need to look at to see if I'm on Windows, Unix, etc?
|
3
|
|
|
|
|
|
|
||
|
|
|
|
Dang -- lbrandy beat me to the punch, but that doesn't mean I can't provide you with the system results for Vista! |
||
|
|
|
|
Thanks all, for the record here's the results on Mac: >>> import os >>> os.name 'posix' >>> import platform >>> platform.system() 'Darwin' >>> platform.release() '8.11.1' |
||
|
|
|
|
You can also use sys.platform if you already have imported sys and you don't want to import another module
|
||
|
|
