Store a Specific Date (and Time)
To store a date and time in Python using the datetime module, you can use the datetime class to create a datetime object representing the date and time you want to store.
Compito
Swipe to start coding
- Import the
datetime
library; - Get the current date and time (
.now()
); - Create a variable with a specific date (and time). You can choose whichever date you prefer.
Once you've completed this task, click the button above the code to check your solution.
Soluzione
import datetime
# Store the current date and time
dt = datetime.datetime.now()
# Store a specific date and time
dt = datetime.datetime(2020, 1, 1, 12, 0, 0)
dt
Mark tasks as Completed
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 2
AVAILABLE TO ULTIMATE ONLY