Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 45 for characters (0.024 sec.)
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 15235
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tion argument, if present, specifies where to read characters from. It must be a file-/stream-like object with r ... and earlier. If set to True , then parsing of the characters ();<>|& is changed: any run of these characters (c ... onsidered punctuation characters) is returned as a single token. If set to a non-em ... pty string of characters, those characters will be used as the punctuation ...
https://man.plustar.jp/python/library/shlex.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 12142
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tesGenerator to use the RFC correct line separator characters when creating the binary string to feed into sendm ... rings, each string ending with the line separation characters found in the source being parsed. The first line i ... icies, name should be the case preserved name (all characters up to the ' : ' separator), while value should be ... the unfolded value (all line separator characters removed, but whitespace kept intact), stripped of ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 9998
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... * , policy ) ¶ Return a string containing linesep characters as required to correctly fold the header according ... rts, but should correctly handle all valid unicode characters as well so that it can parse un-encoded header val ... red header is a run of arbitrary text in the ASCII character set. RFC 2047 , however, has an RFC 5322 compatible ... mechanism for encoding non-ASCII text as ASCII characters within a header value. When a value containing enc ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 9524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... byte string. Whenever the documentation mentions a character string it can be specified as a Unicode string or a ... elay mode, which is similar to cbreak mode in that characters typed by the user are immediately available to the ... The maximum length of a verbose description is 128 characters. It is defined only after the call to initscr() . ... ses. meta ( flag ) ¶ If flag is True , allow 8-bit characters to be input. If flag is False , allow only 7-bit c ...
https://man.plustar.jp/python/library/curses.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 8344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... r an integer. Constants are provided for extension characters; these constants are integers greater than 255. Fo ... about leaving it in odd locations. 属性とカラー ¶ Characters can be displayed in different ways. Status lines i ... g but converts the integer to a string. Individual characters are returned as 1-character strings, and special k ... membership functions that take either integer or 1-character string arguments; these may be useful in writing mo ...
https://man.plustar.jp/python/howto/curses.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 8344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ッダを修正しません。 msg may be a string containing characters in the ASCII range, or a byte string. A string is ... to bytes using the ascii codec, and lone \r and \n characters are converted to \r\n characters. A byte string is ... s it, from_addr and to_addrs may contain non-ASCII characters. このメソッドは次の例外を送出することがあります: S ... resses in from_addr and to_addrs contain non-ASCII characters and the server does not advertise SMTPUTF8 support ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 8344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... (physical line) ¶ A physical line is a sequence of characters terminated by an end-of-line sequence. In source f ... ier ::= xid_start xid_continue * id_start ::= <all characters in general categories Lu, Ll, Lt, Lm, Lo, Nl, the ... underscore, and characters with the Other_ID_Start property> id_continue ::= ... <all characters in id_start , plus characters in the categories Mn ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 8344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... イス は部分文字列を取得します: >>> word [ 0 : 2 ] # characters from position 0 (included) to 2 (excluded) 'Py' >> ... > word [ 2 : 5 ] # characters from position 2 (included) to 5 (excluded) 'tho' 開 ... ng to position 2 (excluded) 'Py' >>> word [ 4 :] # characters from position 4 (included) to the end 'on' >>> wor ... d [ - 2 :] # characters from the second-last (included) to the end 'on' ス ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 8100
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sulting decoded bytes may be invalid. InvalidBase64CharactersDefect -- When decoding a block of base64 encoded b ... ytes, characters outside the base64 alphabet were encountered. The ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 7992
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 4 standard alphabet, and it adds newlines every 76 characters as per RFC 2045 . Note that if you are looking for ... を発生させます。 If validate is False (the default), characters that are neither in the normal base-64 alphabet no ... ng check. If validate is True , these non-alphabet characters in the input result in a binascii.Error . base64. ...
https://man.plustar.jp/python/library/base64.html - [similar]
PREV 1 2 3 4 5 NEXT