I have a string "Hello please change the date from 04/24/2017 by putting month in the middle"
class Paragraph:
@staticmethod
def change_date_format(paragraph):
return None
print(Paragraph.change_date_format('Hello please change the date from 04-24-2017 by putting month in the middle'))
I need to change this to "Hello please change the date from 24/04/2017 by putting month in the middle"