types.GeneratorType
  • References/Python/Python/Data Types

types.GeneratorType The type of generator-iterator objects, created by generator functions

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

formatyear(theyear, width=3) Return a year’s calendar as an HTML table. width (defaulting to 3) specifies the number

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

date.replace(year, month, day) Return a date with the same value, except for those parameters given new values by whichever

2025-01-10 15:47:30
weakref.ref
  • References/Python/Python/Data Types

class weakref.ref(object[, callback]) Return a weak reference to object. The original object can be retrieved by calling

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

class collections.abc.ItemsView class collections.abc.KeysView class collections.abc.ValuesView

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

detach() If self is alive then mark it as dead and return the tuple (obj, func, args, kwargs). If self

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

tzinfo.utcoffset(dt) Return offset of local time from UTC, in minutes east of UTC. If local time is west of UTC, this should

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

classmethod datetime.strptime(date_string, format) Return a datetime corresponding to date_string, parsed

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

array.insert(i, x) Insert a new item with value x in the array before position i. Negative values are treated

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

time.min The earliest representable time, time(0, 0, 0, 0).

2025-01-10 15:47:30