1

I am using the date time lib to get the current date. After obtaining the current date I need to convert the obtained date to in to a string format. Any help is appriciated

from datetime import date
today=date.today()
print today
Mark Byers
  • 767,688
  • 176
  • 1,542
  • 1,434
joel james
  • 11
  • 1
  • 2

3 Answers3

7

You can use today.strftime(format). format will be a string as described here http://docs.python.org/library/time.html#time.strftime . Example:

from datetime import date
today = date.today()
today.strftime("%x")
#>>> '01/31/11'
Gabi Purcaru
  • 29,852
  • 9
  • 74
  • 91
2

datetime.strftime allows you to format a datetime however you want

Daniel DiPaolo
  • 53,439
  • 13
  • 112
  • 113
1
stringDate = str(today)

If that's what you want.

The Communist Duck
  • 5,881
  • 3
  • 34
  • 49