Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 213 for Return (0.153 sec.)
Unicode HOWTO — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... een done for you: the built-in open() function can return a file-like object that assumes the file's content ... ly convert between encodings, taking a stream that returns data in encoding #1 and behaving like a stream re ... n Latin-1, you can wrap it with a StreamRecoder to return bytes encoded in UTF-8: new_f = codecs . StreamRec ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ 現在のコンテクストのイベントループを取得します。 Returns an event loop object implementing the AbstractEve ... ) . get_event_loop () # Do something with loop ... return loop asyncio . set_event_loop_policy ( MyEventLoop ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ASCII characters in quoted-printable encoding. The return value is the converted line(s). If the optional ar ...
https://man.plustar.jp/python/library/binascii.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ue = [] def floatable ( str ): try : float ( str ) return True except ValueError : return False for arg in p ... def check_complex ( option , opt , value ): try : return complex ( value ) except ValueError : raise Option ...
https://man.plustar.jp/python/library/optparse.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ readline. set_history_length ( length ) ¶ Set or return the desired number of lines to save in the history ... ¶ Get the type of completion being attempted. This returns the rl_completion_type variable in the underlying ...
https://man.plustar.jp/python/library/readline.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スペース (space)、タブ (tab)、改行 (linefeed)、復帰 (return)、改頁 (formfeed)、垂直タブ (vertical tab) です。 ... x , self . y = x , y ... def __str__ ( self ): ... return 'Point( {self.x} , {self.y} )' . format ( self = s ...
https://man.plustar.jp/python/library/string.html - [similar]
用語集 — Python 3.6.5 ドキュメント 4460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... terator effectively resumes with another awaitable returned by __anext__() , it picks-up where it left-off. ... data value associated with a function parameter or return value. Its syntax is explained in section 関数定義 ... 行が終了したことです。 iterable An object capable of returning its members one at a time. Examples of iterable ... s an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good ...
https://man.plustar.jp/python/glossary.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 4460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ... raise argparse . ArgumentTypeError ( msg ) ... return value ... >>> parser = argparse . ArgumentParser ( ... def convert_arg_line_to_args ( self , arg_line ): return arg_line . split () 16.4.5.9. 終了メソッド ¶ Argum ...
https://man.plustar.jp/python/library/argparse.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 4460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... int ( self . recv ( 8192 )) def writable ( self ): return ( len ( self . buffer ) > 0 ) def handle_write ( s ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 4460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ヘッダとして 417 Expectation Failed を送る選択をし、 return False とできます。 バージョン 3.2 で追加. send_err ... が含まれます。 date_time_string ( timestamp=None ) ¶ Returns the date and time given by timestamp (which must ... be None or in the format returned by time.time() ), formatted for a message header ... ed. To avoid name resolution delays, it now always returns the IP address. class http.server. SimpleHTTPRequ ...
https://man.plustar.jp/python/library/http.server.html - [similar]