Login

Excel Date

Author:
cronosa
Posted:
April 14, 2010
Language:
Python
Version:
1.1
Score:
0 (after 0 ratings)

This allows you to just call excel_date and it will convert any dates between excel and python datetime.

1
2
3
4
def excel_date(value):
	value = float(value) - 2
	edate = datetime.datetime(year=1900,month=1,day=1)
	return edate + datetime.timedelta(days=value)

More like this

  1. Form field with fixed value by roam 1 week, 5 days ago
  2. New Snippet! by Antoliny0919 2 weeks, 4 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
  4. get_object_or_none by azwdevops 6 months, 4 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago

Comments

pakalk (on April 15, 2010):

You could explain input and output values. Example?

#

Please login first before commenting.