Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 150 for function (0.052 sec.)
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 7' , '-1' , '42' ]) Namespace(accumulate=<built-in function sum>, integers=[7, -1, 42]) スクリプト内では、 par ... '2' , '3' , '4' ]) Namespace(accumulate=<built-in function max>, integers=[1, 2, 3, 4]) >>> parser . parse_ar ... , '4' , '--sum' ]) Namespace(accumulate=<built-in function sum>, integers=[1, 2, 3, 4]) 16.4.4.6. Namespace オ ... 行するかを教えることです。例えば: >>> # sub-command functions >>> def foo ( args ): ... print ( args . x * args ...
https://man.plustar.jp/python/library/argparse.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ike object. This tool adds flexibility to existing functions or classes whose output is hardwired to stdout. F ... inishing' ) return False >>> @mycontext () ... def function (): ... print ( 'The bit in the middle' ) ... >>> ... o the way the decorator protocol works, a callback function declared this way cannot take any parameters. Inst ... of reentrancy are more likely to involve multiple functions calling each other and hence be far more complica ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... aracters): # Import smtplib for the actual sending function import smtplib # Import the email modules we'll ne ... する例です: # Import smtplib for the actual sending function import smtplib # And imghdr to find the types of o ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed. This is a nonzero integer. See the get_ident() function. Thread identifiers may be recycled when a thread ... 解放できます。 Note that Lock is actually a factory function which returns an instance of the most efficient ve ... ill be printed class threading. Timer ( interval , function , args=None , kwargs=None ) ¶ interval 秒後に引数 ... args キーワード引数 kwargs で function を実行するようなタイマを生成します。 args*が ``Non ...
https://man.plustar.jp/python/library/threading.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... the name denotes a valid class attribute that is a function object, a method object is created by packing (poi ... nters to) the instance object and the function object just found together in an abstract object: ... the instance object and the argument list, and the function object is called with this new argument list. 9.3. ... るのも OK です。例えば以下のコードのようにします: # Function defined outside the class def f1 ( self , x , y ): ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... locators used by Python: malloc : use the malloc() function of the C library for all domains ( PYMEM_DOMAIN_RA ... and PYMEM_DOMAIN_OBJ domains and use the malloc() function for the PYMEM_DOMAIN_RAW domain. Install debug hoo ... bug in debug mode. See the PyMem_SetupDebugHooks() function for debug hooks on Python memory allocators. バージ ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 5377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... たり再開したりできるのです。 組み込み関数 (built-in function) ¶ よくイテレータと一緒に使うビルトイン関数について ... 用」と呼ばれています。 partial() のコンストラクタは (function, arg1, arg2, ..., kwarg1=value1, kwarg2=value2) と ... コーラブルなので、それを呼べば、引数の埋まった状態で function を実行したのと同じことになります。 以下にあるのは、 ... mailing list. Version 0.30: Adds a section on the functional module written by Collin Winter; adds short sect ...
https://man.plustar.jp/python/howto/functional.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... roperly and a French locale is selected, certain C functions will tell the program that the byte corresponding ... cause the resulting compiled object to use these C functions for \w ; this is slower, but also enables \w+ to ... As you'd expect, there's a module-level re.split() function, too. . split ( string [ , maxsplit=0 ] ) string を ... placement value, which can be either a string or a function, and the string to be processed. . sub ( replaceme ...
https://man.plustar.jp/python/howto/regex.html - [similar]
ソート HOW TO — Python 3.6.5 ドキュメント 5377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... でしょう: def cmp_to_key ( mycmp ): 'Convert a cmp= function into a key= function' class K : def __init__ ( sel ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 5377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... utput to. It must be suitable for Python's print() function. level is used internally. include_default , if tr ...
https://man.plustar.jp/python/library/email.iterators.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT