Are you interested in purchasing the entire website? If so, we will include an additional premium domain (freetimelearn.com) at no extra cost along with this domain.
Mail : freetimelearn@gmail.com
WhatsApp : +919966463846
# Input : a numpy datetime64 object
dt64 = np.datetime64('2018-02-25 22:10:10')
# Solution
from datetime import datetime
dt64.tolist()
# or
dt64.astype(datetime)
# datetime.datetime(2018, 2, 25, 22, 10, 10)