MCPcopy Index your code
hub / github.com/RustPython/RustPython / zfill

Method zfill

Lib/collections/__init__.py:1609–1610  ·  view source on GitHub ↗
(self, width)

Source from the content-addressed store, hash-verified

1607 return self.__class__(self.data.upper())
1608
1609 def zfill(self, width):
1610 return self.__class__(self.data.zfill(width))

Callers 3

_format_float_styleMethod · 0.45
innerFunction · 0.45
test_zfillMethod · 0.45

Calls 1

__class__Method · 0.45

Tested by 1

test_zfillMethod · 0.36