plateform info.

Mikael Olofsson mikael at isy.liu.se
Tue Sep 20 04:30:12 EDT 2005


Monu Agrawal wrote:
> Hi I want to know whether the program is being run on windows or on
> Xnix. Is there any variable or method which tells me that it's windows?

Will this help?

 >>> import sys
 >>> sys.platform
'win32'

There is also the platform module, that can give you a lot more 
information about the your platform. Try help(platform).

/MiO



More information about the Python-list mailing list