I am trying to set a variable to equal today\'s date.
I looked this up and found a related article:
Set today date as default value in the model
Howe
If you want a string mm/dd/yyyy instead of the datetime object, you can use strftime (string format time):
mm/dd/yyyy
datetime
strftime
>>> dt.datetime.today().strftime("%m/%d/%Y") # ^ note parentheses '02/12/2014'