1Project Jupyter is a nonprofit organization created to "develop open-source
2software, open-standards, and services for interactive computing across dozens
3of programming languages".
4
5Spun-off from IPython in 2014 by Fernando Pérez, Project Jupyter supports
6execution environments in several dozen languages.
1In [1]: import datetime
2
3In [2]: dti = pd.to_datetime(
4 ...: ["1/1/2018", np.datetime64("2018-01-01"), datetime.datetime(2018, 1, 1)]
5 ...: )
6 ...:
7
8In [3]: dti
9Out[3]: DatetimeIndex(['2018-01-01', '2018-01-01', '2018-01-01'], dtype='datetime64[ns]', freq=None)
10