G
Guest
Just curious if this is the best way to get the first 3 letters of the current month?
Thanks.
Jay
'MAR'import datetime
d = datetime.date.today()
m = d.strftime("%B")[:3].upper()
m
Thanks.
Jay