I have a pandas dataframe with Date with the following formats:
Year-Month-Day
2000-02-01 2000-02-02 2000-02-03
I would like it to be like this:
Month/Day/Year
02/01/2000 02/02/2000 02/03/2000
Not only the parts of the date must be rearranged, but also the symbol "/" must separate the parts of the date.
How to do that with Python?