Python date Class Methods

Python date class has the following built-in functions.

Method Description
__str__() Returns a string representation of the object.
isocalendar() Returns a 3-tuple (ISO year, ISO week number, ISO weekday).
isoformat() Returns a string representing the date in ISO 8601 format, YYYY-MM-DD.
isoweekday() Returns the day of the week as an integer (ISO weekday).
replace() Replaces the date with the same value.
strftime() Returns a string representing the date, which is controlled by an explicit format string.
timetuple() Returns a time.struct_time which is an object with a named tuple interface containing nine elements.
toordinal() Returns the proleptic Gregorian ordinal of the date.
weekday() Returns the day of the week as an integer.
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement



Copyright © 2024 www.includehelp.com. All rights reserved.