I'm making a program that will print out a set of savings for tomorrow only, and i wanted to specify what date tomorrow was, which i did like this:
Tomorrow = datetime.date.today() + datetime.timedelta(days=1)
Which gives the outpu:
2016-04-11
as you can see, it does give tomorrows date like planned, except it does it in the YYYY-MM-DD format, which is my issue. is there a way to have tomorrows date printed in the DD-MM-YYYY format? Cheers