Apéndice A. Fechas y horarios
Como en la mayoría de las disciplinas científicas, las fechas y horas desempeñan un papel importante en las finanzas. Este apéndice presenta diferentes aspectos de este tema en lo que se refiere a la programación en Python. Por supuesto, no puede ser exhaustivo. Sin embargo, proporciona una introducción a las principales áreas del ecosistema Python que soportan el modelado de la información de fecha y hora.
Python
El módulodatetime
de la biblioteca estándar de Python permite realizar las tareas más importantes relacionadas con la fecha y la hora:
In
[
1
]
:
from
pylab
import
mpl
,
plt
plt
.
style
.
use
(
'
seaborn
'
)
mpl
.
rcParams
[
'
font.family
'
]
=
'
serif
'
%
matplotlib
inline
In
[
2
]
:
import
datetime
as
dt
In
[
3
]
:
dt
.
datetime
.
now
(
)
Out
[
3
]
:
datetime
.
datetime
(
2018
,
10
,
19
,
15
,
17
,
32
,
164295
)
In
[
4
]
:
to
=
dt
.
datetime
.
today
(
)
to
Out
[
4
]
:
datetime
.
datetime
(
2018
,
10
,
19
,
15
,
17
,
32
,
177092
)
In
[
5
]
:
type
(
to
)
Out
[
5
]
:
datetime
.
datetime
In
[
6
]
:
dt
.
datetime
.
today
(
)
.
weekday
(
)
Out
[
6
]
:
4
Get Python para Finanzas, 2ª Edición now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.