A snippet of Python code:
def someMethod():
return datetime.date.today().strftime("%B" + " " + "%d".lstrip('0') + ", " + "%Y")
How come this returns:
June 03, 2015
And not what I expected, which was:
June 3, 2015
Thanks for your help.