datetime.tzinfo.fromutc()
  • References/Python/Python/Data Types

tzinfo.fromutc(dt) This is called from the default datetime.astimezone() implementation. When called from that

2025-01-10 15:47:30
datetime.datetime.ctime()
  • References/Python/Python/Data Types

datetime.ctime() Return a string representing the date and time, for example datetime(2002, 12, 4, 20, 30, 40).ctime()

2025-01-10 15:47:30
datetime.datetime.microsecond
  • References/Python/Python/Data Types

datetime.microsecond In range(1000000).

2025-01-10 15:47:30
collections.Counter.most_common()
  • References/Python/Python/Data Types

most_common([n]) Return a list of the n most common elements and their counts from the most common to the least. If

2025-01-10 15:47:30
calendar.TextCalendar.formatmonth()
  • References/Python/Python/Data Types

formatmonth(theyear, themonth, w=0, l=0) Return a month’s calendar in a multi-line string. If w is provided, it specifies

2025-01-10 15:47:30
datetime.timezone.fromutc()
  • References/Python/Python/Data Types

timezone.fromutc(dt) Return dt + offset. The dt argument must be an aware datetime instance

2025-01-10 15:47:30
calendar.calendar()
  • References/Python/Python/Data Types

calendar.calendar(year, w=2, l=1, c=6, m=3) Returns a 3-column calendar for an entire year as a multi-line string using the

2025-01-10 15:47:30
calendar.Calendar.monthdayscalendar()
  • References/Python/Python/Data Types

monthdayscalendar(year, month) Return a list of the weeks in the month month of the year as full weeks. Weeks

2025-01-10 15:47:30
collections.somenamedtuple.
  • References/Python/Python/Data Types

somenamedtuple._source A string with the pure Python source code used to create the named tuple class. The source makes the

2025-01-10 15:47:30
datetime.time
  • References/Python/Python/Data Types

class datetime.time(hour=0, minute=0, second=0, microsecond=0, tzinfo=None) All arguments are optional. tzinfo may

2025-01-10 15:47:30