Guys if you know any other methods please tell about them. This function gives the error:
'str' object is not callable.
from datetime import date
def datetowords(date):
day_, month_, year_ = int(date[:2]), int(date[3:5]), int(date[6:])
print(date(day=day_, month=month_, year=year_).strftime('%A %d %B %Y'))
datetowords("02.11.2013")