CommencerCommencer gratuitement

Making relative datetimes

The Troubled Asset Relief Program (TARP) was passed in October of 2008 in an attempt to stablize the US financial system during the crisis of 2007-2008. To investigate the state of markets before and after the passage of TARP, you wish to create some datetimes for times before and after.

Cet exercice fait partie du cours

Intermediate Python for Finance

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

from datetime import datetime, timedelta

# TARP passed Oct 3 2008
tarp = datetime(2008, 10, 3)

# Seven days before TARP
week_before = tarp - timedelta(____ = 7)

# Print week_before
____
Modifier et exécuter le code