Alan> I have a datetime value and want to format it to "June 1, 2006"
Alan> shape. How can I do that?
Again, Python's introspection capabilities to the rescue:
% pydoct datetime
Help on module datetime:
NAME
datetime - Fast implementation of the datetime type.
...
class datetime(date)
| datetime(year, month, day[, hour[, minute[, second[,
microsecond[,tzinfo]]]]])
...
| strftime(...)
| format -> strftime() style string.
Skip
--
http://mail.python.org/mailman/listinfo/python-list
