finding the date and time?

Is there a function or library in python that will return the time and date? Is there any way to get the time and date?

The datetime module is what you want.

Enter "help('datetime')" at the python prompt.

Thanks