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

Method title

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

For each element in `self`, return a titlecased version of the string: words start with uppercase characters, all remaining cased characters are lowercase. See also -------- char.title

(self)

Source from the content-addressed store, hash-verified

2556 return asarray(swapcase(self))
2557
2558 def title(self):
2559 """
2560 For each element in `self`, return a titlecased version of the
2561 string: words start with uppercase characters, all remaining cased
2562 characters are lowercase.
2563
2564 See also
2565 --------
2566 char.title
2567
2568 """
2569 return asarray(title(self))
2570
2571 def translate(self, table, deletechars=None):
2572 """

Callers 15

xkcd.pyFile · 0.80
subplot.pyFile · 0.80
_makeTagsFunction · 0.80
obtainMethod · 0.80
_makeTagsFunction · 0.80
_makeTagsFunction · 0.80
install_exeMethod · 0.80
_makeTagsFunction · 0.80
format_shortcutMethod · 0.80

Calls 2

asarrayFunction · 0.70
titleFunction · 0.70

Tested by 10

test_markevery_polarFunction · 0.64
test_tripcolorFunction · 0.64
test_patheffect3Function · 0.64
test_titleMethod · 0.64
test_casemethodsMethod · 0.64