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
|
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
|
||||
|
You can use
|
||||
|
|
|
|
|||
|
|
If that's what you want. |
|||
|
|
{}button to format it. – birryree Jan 31 '11 at 19:57printconverts the value to a string as part of printing it. What more do you want? – S.Lott Jan 31 '11 at 19:58