We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
str.center()
1 parent c6497d6 commit 5b203f5Copy full SHA for 5b203f5
Doc/library/stdtypes.rst
@@ -1652,8 +1652,14 @@ expression support in the :mod:`re` module).
1652
1653
Return centered in a string of length *width*. Padding is done using the
1654
specified *fillchar* (default is an ASCII space). The original string is
1655
- returned if *width* is less than or equal to ``len(s)``.
1656
-
+ returned if *width* is less than or equal to ``len(s)``. For example::
+
1657
+ >>> 'Python'.center(10)
1658
+ ' Python '
1659
+ >>> 'Python'.center(10, '-')
1660
+ '--Python--'
1661
+ >>> 'Python'.center(4)
1662
+ 'Python'
1663
1664
1665
.. method:: str.count(sub[, start[, end]])
0 commit comments