There is a DataFrame Views, which contains the Series: Email, Role, Topics, Date. Date contains strings like '2016/01/09'. Using the datetime.strptime method, I want to convert these strings to dates, but instead of the result I need, I get the replacement of the string values by one value in the date format: '2016/01/09', which is the first argument of the method. The question is how to write so that the lines change only the format, not the value?
views.Date = datetime.strptime('2016/01/09', '%Y/%m/%d')