Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 177 for string (0.044 sec.)
21.8. urllib.parse --- URL を解析して構成要素にする — Python 3.6.5 ドキュメント 7391
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... L 文字列を生成します。 urllib.parse. urlparse ( urlstring , scheme='' , allow_fragments=True ) ¶ URL を解析し ... るデフォルトの '' ( b'' に自動変換出来る)を除き、 urlstring と同じ型(テキストもしくはバイト列)であるべきです。 ... 等価だと述べています)。 urllib.parse. urlsplit ( urlstring , scheme='' , allow_fragments=True ) ¶ urlparse() ... の再作成もサポートしています。 urllib.parse. quote ( string , safe='/' , encoding=None , errors=None ) ¶ strin ...
https://man.plustar.jp/python/library/urllib.parse.html - [similar]
15.3. secrets --- 機密を扱うために安全な乱数を生成する — Python 3.6.5 ドキュメ... 7246
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ァベットと数字を含むパスワードを生成するには: import string alphabet = string . ascii_letters + string . digit ... も3つ含む、10文字のパスワードを生成するには: import string alphabet = string . ascii_letters + string . digit ... token , nbytes , モジュール , パスワード , None , string , 暗号 , 乱数 Table of Contents 15.3. secrets --- ...
https://man.plustar.jp/python/library/secrets.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 7101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sys_version ¶ Python 処理系のバージョンが, version_string メソッドや server_version クラス変数で利用可能な形 ... ' です。 error_message_format ¶ Specifies a format string that should be used by send_error() method for bui ... lding an error response to the client. The string is filled by default with variables from responses ... or unknown codes the default value for both is the string ??? . The body will be empty if the method is HEAD ...
https://man.plustar.jp/python/library/http.server.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 7101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one , version=None ) ¶ Create a UUID from either a string of 32 hexadecimal digits, a string of 16 bytes as ... the bytes argument, a string of 16 bytes in little-endian order as the bytes_le ... single 128-bit integer as the int argument. When a string of hex digits is given, curly braces, hyphens, and ... -5372-9b90-0c9aee199e5d') >>> # make a UUID from a string of hex digits (braces and hyphens ignored) >>> x = ...
https://man.plustar.jp/python/library/uuid.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e specified as an integer, a one-character Unicode string or a one-byte byte string. Whenever the documentat ... ion mentions a character string it can be specified as a Unicode string or a byte ... cud1 , cuu1 , cuu , vpa are disabled; and the home string is set to the value of cr . The effect is that the ... one , fd=-1 ) ¶ Initialize the terminal. term is a string giving the terminal name, or None ; if omitted or ...
https://man.plustar.jp/python/library/curses.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6800
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... line separator characters when creating the binary string to feed into sendmail's stdin , where the default ... しないべきであるということを示します。 linesep ¶ The string to be used to terminate lines in serialized output ... orks with BytesGenerator , not Generator , because strings cannot contain binary data. If a Generator is ope ... The email package calls this method with a list of strings, each string ending with the line separation char ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 6800
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プルは named tuple として返され、フィールド名は type string start end line になります。 The returned named tup ... ョン 3.2 で追加. exception tokenize. TokenError ¶ docstring や複数行にわたることが許される式がファイル内のどこ ... いない場合に送出されます。例えば: """Beginning of docstring もしくは: [ 1 , 2 , 3 閉じていないシングルクォート ... m tokenize import tokenize , untokenize , NUMBER , STRING , NAME , OP from io import BytesIO def decistmt ( ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 6577
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 欠く構文解析規則にせざるを得ませんでした。 文字集合 string.ascii_letters 、 string.digits 、 !#$%&'*+-.^_`|~: ... attrs の意味は output() と同じです。 Morsel. OutputString ( attrs=None ) ¶ Moselの文字列表現をHTTPやJavaScri ... load ( "chips=ahoy; vienna=finger" ) # load from a string (HTTP header) >>> print ( C ) Set-Cookie: chips=ah ... = 7 # equivalent to C["number"] = str(7) >>> C [ "string" ] = "seven" >>> C [ "number" ] . value '7' >>> C ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 6577
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... >>> a = set ( 'abracadabra' ) # form a set from a string >>> 'z' in a # fast membership testing False >>> a ... ', 'd']) >>> '' . join ( a ) # convert back into a string 'arbcd' >>> b = set ( 'alacazam' ) # form a second ... より実装されました。 PEP 292: より単純な文字列置換 (string substitution) ¶ 標準ライブラリに、文字列を変数で置 ... ドバックを彼らに与えるのは難しいのです。 PEP 292 は string モジュールに Template クラスを追加します。これは置 ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 6499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... use : to delimit keys from values [All Values Are Strings] values like this: 1000000 or this: 3.14159265359 ... s? : no integers, floats and booleans are held as: strings can use the API to get converted values directly: ... I work all day [No Values] key_without_value empty string value here = [You can use comments] # like this ; ... Parser ( allow_no_value = True ) >>> config . read_string ( sample_config ) >>> # Settings with values are t ...
https://man.plustar.jp/python/library/configparser.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT