240 发简信
IP属地:上海
  • Python内置函数(15)——dict

    英文文档: class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterab...

  • Python内置函数(14)——delattr

    英文文档: delattr(object, name)This is a relative of setattr(). The argument...

  • Python内置函数(13)——complex

    英文文档: class complex([real[, imag]])Return a complex number with the valu...

  • Python内置函数(12)——compile

    英文文档:compile(source, filename, mode, flags=0, dont_inherit=False, optimi...

  • Python内置函数(11)——classmethod

    英文文档: classmethod(function) Return a class method for function. A class ...

  • Python内置函数(10)——chr

    英文文档: chr(i)Return the string representing a character whose Unicode cod...

  • Python内置函数(9)——callable

    英文文档: callable(object)Return True if the object argument appears callabl...

  • Python内置函数(8)——bytes

    英文文档: class bytes([source[, encoding[, errors]]])Return a new “bytes” ob...

  • Python内置函数(7)——bytearray

    英文文档: class bytearray([source[, encoding[, errors]]])Return a new array ...