Learn
We can use a function called datetime.now()
to retrieve the current date and time.
from datetime import datetime print datetime.now()
The first line imports the datetime
library so that we can use it.
The second line will print out the current date and time.
Instructions
1.
Create a variable called now
and store the result of datetime.now()
in it.
Then, print
the value of now
.
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.