Logo

Programming-Idioms

History of Idiom 61 > diff from v12 to v13

Edit summary for version 13 by :

Version 12

2015-08-20, 17:03:09

Version 13

2015-08-20, 18:29:55

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Imports
import datetime
Code
d = datetime.datetime.now()