Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2006-03-31 16:25:27
Size: 934
Editor: 209-132-174-36
Comment: Fixed Formatting Error
Revision 4 as of 2008-11-15 13:59:54
Size: 1069
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Sometimes, it doesn't hurt to play around with programming languages. Python is probably the easiest (and most enjoyable) programming language out there to play around with, so I decided to start making my collection of "Doodles" public. Feel free to edit them, comment on them, create your own, or delete them. This is basically a python playground.
Sometimes, it doesn't hurt to play around with programming languages. Python is probably the easiest and most enjoyable language to play around with, so I decided to create this section devoted to playing. Feel free to write a program, edit an existing one, delete an existing one, etc. It's like having an open source python-only playground! Attachments are available for these little code "doodles," but please don't forget to update the attachments page if you make any changes here.

Sometimes, it doesn't hurt to play around with programming languages. Python is probably the easiest and most enjoyable language to play around with, so I decided to create this section devoted to playing. Feel free to write a program, edit an existing one, delete an existing one, etc. It's like having an open source python-only playground! Attachments are available for these little code "doodles," but please don't forget to update the attachments page if you make any changes here.

Doodle #1

{{{#A doodle that tells the user what version of Windows they are using, the version, CSD level, and processor configuration. It gives the #win32_ver function of the platform module a nice output engine.

from platform import win32_ver

SystemInformation = win32_ver(release=, version=, csd=, ptype=) print 'Opperating System: Microsoft Windows', SystemInformation[0] print 'Version:', SystemInformation[1] print 'CSD:', SystemInformation[2] print 'Processor Configuration:', SystemInformation[3] print raw_input('Press Enter to quit. ')}}}

PowerPiano17/Doodles (last edited 2008-11-15 13:59:54 by localhost)

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