<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                ### 導航 - [索引](../genindex.xhtml "總目錄") - [模塊](../py-modindex.xhtml "Python 模塊索引") | - [下一頁](unicodedata.xhtml "unicodedata --- Unicode 數據庫") | - [上一頁](difflib.xhtml "模塊 difflib 是一個計算差異的助手") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) ? - zh\_CN 3.7.3 [文檔](../index.xhtml) ? - [Python 標準庫](index.xhtml) ? - [文本處理服務](text.xhtml) ? - $('.inline-search').show(0); | # [`textwrap`](#module-textwrap "textwrap: Text wrapping and filling") --- Text wrapping and filling **Source code:** [Lib/textwrap.py](https://github.com/python/cpython/tree/3.7/Lib/textwrap.py) \[https://github.com/python/cpython/tree/3.7/Lib/textwrap.py\] - - - - - - The [`textwrap`](#module-textwrap "textwrap: Text wrapping and filling") module provides some convenience functions, as well as [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper"), the class that does all the work. If you're just wrapping or filling one or two text strings, the convenience functions should be good enough; otherwise, you should use an instance of [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") for efficiency. `textwrap.``wrap`(*text*, *width=70*, *\*\*kwargs*)Wraps the single paragraph in *text* (a string) so every line is at most *width* characters long. Returns a list of output lines, without final newlines. Optional keyword arguments correspond to the instance attributes of [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper"), documented below. *width* defaults to `70`. See the [`TextWrapper.wrap()`](#textwrap.TextWrapper.wrap "textwrap.TextWrapper.wrap") method for additional details on how [`wrap()`](#textwrap.wrap "textwrap.wrap") behaves. `textwrap.``fill`(*text*, *width=70*, *\*\*kwargs*)Wraps the single paragraph in *text*, and returns a single string containing the wrapped paragraph. [`fill()`](#textwrap.fill "textwrap.fill") is shorthand for ``` "\n".join(wrap(text, ...)) ``` In particular, [`fill()`](#textwrap.fill "textwrap.fill") accepts exactly the same keyword arguments as [`wrap()`](#textwrap.wrap "textwrap.wrap"). `textwrap.``shorten`(*text*, *width*, *\*\*kwargs*)Collapse and truncate the given *text* to fit in the given *width*. First the whitespace in *text* is collapsed (all whitespace is replaced by single spaces). If the result fits in the *width*, it is returned. Otherwise, enough words are dropped from the end so that the remaining words plus the `placeholder` fit within `width`: ``` >>> textwrap.shorten("Hello world!", width=12) 'Hello world!' >>> textwrap.shorten("Hello world!", width=11) 'Hello [...]' >>> textwrap.shorten("Hello world", width=10, placeholder="...") 'Hello...' ``` Optional keyword arguments correspond to the instance attributes of [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper"), documented below. Note that the whitespace is collapsed before the text is passed to the [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") [`fill()`](#textwrap.fill "textwrap.fill")function, so changing the value of [`tabsize`](#textwrap.TextWrapper.tabsize "textwrap.TextWrapper.tabsize"), [`expand_tabs`](#textwrap.TextWrapper.expand_tabs "textwrap.TextWrapper.expand_tabs"), [`drop_whitespace`](#textwrap.TextWrapper.drop_whitespace "textwrap.TextWrapper.drop_whitespace"), and [`replace_whitespace`](#textwrap.TextWrapper.replace_whitespace "textwrap.TextWrapper.replace_whitespace") will have no effect. 3\.4 新版功能. `textwrap.``dedent`(*text*)Remove any common leading whitespace from every line in *text*. This can be used to make triple-quoted strings line up with the left edge of the display, while still presenting them in the source code in indented form. Note that tabs and spaces are both treated as whitespace, but they are not equal: the lines `"? hello"` and `"\thello"` are considered to have no common leading whitespace. 例如: ``` def test(): # end first line with \ to avoid the empty line! s = '''\ hello world ''' print(repr(s)) # prints ' hello\n world\n ' print(repr(dedent(s))) # prints 'hello\n world\n' ``` `textwrap.``indent`(*text*, *prefix*, *predicate=None*)Add *prefix* to the beginning of selected lines in *text*. Lines are separated by calling `text.splitlines(True)`. By default, *prefix* is added to all lines that do not consist solely of whitespace (including any line endings). 例如: ``` >>> s = 'hello\n\n \nworld' >>> indent(s, ' ') ' hello\n\n \n world' ``` The optional *predicate* argument can be used to control which lines are indented. For example, it is easy to add *prefix* to even empty and whitespace-only lines: ``` >>> print(indent(s, '+ ', lambda line: True)) + hello + + + world ``` 3\.3 新版功能. [`wrap()`](#textwrap.wrap "textwrap.wrap"), [`fill()`](#textwrap.fill "textwrap.fill") and [`shorten()`](#textwrap.shorten "textwrap.shorten") work by creating a [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") instance and calling a single method on it. That instance is not reused, so for applications that process many text strings using [`wrap()`](#textwrap.wrap "textwrap.wrap") and/or [`fill()`](#textwrap.fill "textwrap.fill"), it may be more efficient to create your own [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") object. Text is preferably wrapped on whitespaces and right after the hyphens in hyphenated words; only then will long words be broken if necessary, unless [`TextWrapper.break_long_words`](#textwrap.TextWrapper.break_long_words "textwrap.TextWrapper.break_long_words") is set to false. *class* `textwrap.``TextWrapper`(*\*\*kwargs*)The [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") constructor accepts a number of optional keyword arguments. Each keyword argument corresponds to an instance attribute, so for example ``` wrapper = TextWrapper(initial_indent="* ") ``` is the same as ``` wrapper = TextWrapper() wrapper.initial_indent = "* " ``` You can re-use the same [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") object many times, and you can change any of its options through direct assignment to instance attributes between uses. The [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") instance attributes (and keyword arguments to the constructor) are as follows: `width`(default: `70`) The maximum length of wrapped lines. As long as there are no individual words in the input text longer than [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width"), [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") guarantees that no output line will be longer than [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width") characters. `expand_tabs`(default: `True`) If true, then all tab characters in *text* will be expanded to spaces using the `expandtabs()` method of *text*. `tabsize`(default: `8`) If [`expand_tabs`](#textwrap.TextWrapper.expand_tabs "textwrap.TextWrapper.expand_tabs") is true, then all tab characters in *text* will be expanded to zero or more spaces, depending on the current column and the given tab size. 3\.3 新版功能. `replace_whitespace`(default: `True`) If true, after tab expansion but before wrapping, the [`wrap()`](#textwrap.wrap "textwrap.wrap") method will replace each whitespace character with a single space. The whitespace characters replaced are as follows: tab, newline, vertical tab, formfeed, and carriage return (`'\t\n\v\f\r'`). 注解 If [`expand_tabs`](#textwrap.TextWrapper.expand_tabs "textwrap.TextWrapper.expand_tabs") is false and [`replace_whitespace`](#textwrap.TextWrapper.replace_whitespace "textwrap.TextWrapper.replace_whitespace") is true, each tab character will be replaced by a single space, which is *not*the same as tab expansion. 注解 If [`replace_whitespace`](#textwrap.TextWrapper.replace_whitespace "textwrap.TextWrapper.replace_whitespace") is false, newlines may appear in the middle of a line and cause strange output. For this reason, text should be split into paragraphs (using [`str.splitlines()`](stdtypes.xhtml#str.splitlines "str.splitlines") or similar) which are wrapped separately. `drop_whitespace`(default: `True`) If true, whitespace at the beginning and ending of every line (after wrapping but before indenting) is dropped. Whitespace at the beginning of the paragraph, however, is not dropped if non-whitespace follows it. If whitespace being dropped takes up an entire line, the whole line is dropped. `initial_indent`(default: `''`) String that will be prepended to the first line of wrapped output. Counts towards the length of the first line. The empty string is not indented. `subsequent_indent`(default: `''`) String that will be prepended to all lines of wrapped output except the first. Counts towards the length of each line except the first. `fix_sentence_endings`(default: `False`) If true, [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") attempts to detect sentence endings and ensure that sentences are always separated by exactly two spaces. This is generally desired for text in a monospaced font. However, the sentence detection algorithm is imperfect: it assumes that a sentence ending consists of a lowercase letter followed by one of `'.'`, `'!'`, or `'?'`, possibly followed by one of `'"'` or `"'"`, followed by a space. One problem with this is algorithm is that it is unable to detect the difference between "Dr." in ``` [...] Dr. Frankenstein's monster [...] ``` and "Spot." in ``` [...] See Spot. See Spot run [...] ``` [`fix_sentence_endings`](#textwrap.TextWrapper.fix_sentence_endings "textwrap.TextWrapper.fix_sentence_endings") is false by default. Since the sentence detection algorithm relies on `string.lowercase` for the definition of "lowercase letter," and a convention of using two spaces after a period to separate sentences on the same line, it is specific to English-language texts. `break_long_words`(default: `True`) If true, then words longer than [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width") will be broken in order to ensure that no lines are longer than [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width"). If it is false, long words will not be broken, and some lines may be longer than [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width"). (Long words will be put on a line by themselves, in order to minimize the amount by which [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width") is exceeded.) `break_on_hyphens`(default: `True`) If true, wrapping will occur preferably on whitespaces and right after hyphens in compound words, as it is customary in English. If false, only whitespaces will be considered as potentially good places for line breaks, but you need to set [`break_long_words`](#textwrap.TextWrapper.break_long_words "textwrap.TextWrapper.break_long_words") to false if you want truly insecable words. Default behaviour in previous versions was to always allow breaking hyphenated words. `max_lines`(default: `None`) If not `None`, then the output will contain at most *max\_lines* lines, with *placeholder* appearing at the end of the output. 3\.4 新版功能. `placeholder`(default: `' [...]'`) String that will appear at the end of the output text if it has been truncated. 3\.4 新版功能. [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") also provides some public methods, analogous to the module-level convenience functions: `wrap`(*text*)Wraps the single paragraph in *text* (a string) so every line is at most [`width`](#textwrap.TextWrapper.width "textwrap.TextWrapper.width") characters long. All wrapping options are taken from instance attributes of the [`TextWrapper`](#textwrap.TextWrapper "textwrap.TextWrapper") instance. Returns a list of output lines, without final newlines. If the wrapped output has no content, the returned list is empty. `fill`(*text*)Wraps the single paragraph in *text*, and returns a single string containing the wrapped paragraph. ### 導航 - [索引](../genindex.xhtml "總目錄") - [模塊](../py-modindex.xhtml "Python 模塊索引") | - [下一頁](unicodedata.xhtml "unicodedata --- Unicode 數據庫") | - [上一頁](difflib.xhtml "模塊 difflib 是一個計算差異的助手") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) ? - zh\_CN 3.7.3 [文檔](../index.xhtml) ? - [Python 標準庫](index.xhtml) ? - [文本處理服務](text.xhtml) ? - $('.inline-search').show(0); | ? [版權所有](../copyright.xhtml) 2001-2019, Python Software Foundation. Python 軟件基金會是一個非盈利組織。 [請捐助。](https://www.python.org/psf/donations/) 最后更新于 5月 21, 2019. [發現了問題](../bugs.xhtml)? 使用[Sphinx](http://sphinx.pocoo.org/)1.8.4 創建。
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看