Tuesday, March 29, 2011

csci133Tkinter.py

A post about Tkinter's most common usage question, answer and demonstration sample code.

Monday, March 21, 2011

csci133string.py

Reference: http://docs.python.org/library/stdtypes.html#sequence-types-str-unicode-list-tuple-bytearray-buffer-xrange

String is one of the most if not the most common object used in all languages, you can create a string object by doing.

myString = 'George'

# Work in progress #