Attachment 'PyDoodle1.py'

Download

   1 #A doodle that tells the user what version of Windows they are using, the version, CSD level, and processor configuration.  It gives the
   2 #win32_ver function of the platform module a nice output engine.
   3 
   4 from platform import win32_ver
   5 
   6 SystemInformation = win32_ver(release='', version='', csd='', ptype='')
   7 print 'Opperating System: Microsoft Windows', SystemInformation[0]
   8 print 'Version:', SystemInformation[1]
   9 print 'CSD:', SystemInformation[2]
  10 print 'Processor Configuration:', SystemInformation[3]
  11 print
  12 raw_input('Press Enter to quit. ')

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2006-03-31 19:17:47, 0.5 KB) [[attachment:PyDoodle1.py]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.

Unable to edit the page? See the FrontPage for instructions.