datetime to string with series in pandas

There is no str accessor for datetimes and you can’t do dates.astype(str) either, you can call apply and use datetime.strftime: You can change the format of your date strings using whatever you like: strftime() and strptime() Behavior. Update As of version 0.17.0 you can do this using dt.strftime will now work