Uniformity Flashcards
1
Q
Whta is pd.datetime()?
A
date format
2
Q
What is the dt.strftime()?
A
function is used to convert to Index using specified date_format. The function return an Index of formatted strings specified by date_format, which supports the same string format as the python standard library
(“%d-%m-%Y)
3
Q
How do you convert pd.datetime()?
A
dataframe[‘column’]= pd.datetime(dataframe[‘column’], comment infer_datetime_format= True,
comment errors= ‘coerce’