Input and Output: repr(): generate representations which can be read by the interpreter
#For objects which don't have a particular representation for human consumption, #str() will return the same value as repr(). s = 'Hello, world.' print repr(s)