> what are all the attributes of datetime.datetime?
>
You generally have two options to explore built-in functions:
1) You can look them up in the official Python documentation:
http://docs.python.org/library/datetime.html
2) Probe them from the python command line using dir and various built-
in attributes and methods.

Here's a somewhate old but still handy tutorial on Python
introspection:

http://www.ibm.com/developerworks/library/l-pyint.html

And a few command-line examples to get you started (I've deleted the
output from the below commands):

>>> import datetime
>>> dir(datetime)
>>> dir(datetime.datetime)
>>> print datetime.datetime.__doc__
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to