MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / ljust

Method ljust

site-packages/numpy/core/defchararray.py:2369–2379  ·  view source on GitHub ↗

Return an array with the elements of `self` left-justified in a string of length `width`. See also -------- char.ljust

(self, width, fillchar=' ')

Source from the content-addressed store, hash-verified

2367 return join(self, seq)
2368
2369 def ljust(self, width, fillchar=' '):
2370 """
2371 Return an array with the elements of `self` left-justified in a
2372 string of length `width`.
2373
2374 See also
2375 --------
2376 char.ljust
2377
2378 """
2379 return asarray(ljust(self, width, fillchar))
2380
2381 def lower(self):
2382 """

Callers

nothing calls this directly

Calls 2

ljustFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected