Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

change the format of date in python

# Change the format of the order date column to datetime format
data = data[data['Order Date'].str[0:2] != 'Or'] # this line of code ensures that there is no text in any row or cell
data['Order Date'] = pd.to_datetime(data['Order Date'])
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #format #date #python
ADD COMMENT
Topic
Name
3+8 =