Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 150 for function (0.097 sec.)
34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 5611
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sound , flags ) ¶ Call the underlying PlaySound() function from the Platform API. The sound parameter may be ... ( type=MB_OK ) ¶ Call the underlying MessageBeep() function from the Platform API. This plays a sound as speci ...
https://man.plustar.jp/python/library/winsound.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 5611
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... ling services. atexit Register and execute cleanup functions. audioop Manipulate raw audio data. b base64 RFC ... or bzip2 compression and decompression. c calendar Functions for working with calendars, including some emulat ... hunk Module to read IFF chunks. cmath Mathematical functions for complex numbers. cmd Build line-oriented comm ... ct base classes for containers colorsys Conversion functions between RGB and other color systems. compileall T ...
https://man.plustar.jp/python/py-modindex.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 5611
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 行うことができる型です: ユーザ定義関数 (user-defined function) ユーザ定義関数オブジェクトは、関数定義を行うことで ... 性である場合 だけ です。 ジェネレータ関数 (generator function) yield 文 ( yield 文 の節を参照) を使う関数もしくは ... の最後まで到達しています。 コルーチン関数 (coroutine function) async def を使用して定義された関数やメソッドを コ ... ルーチン関数 (coroutine function) と呼びます。 呼び出された時、そのような関数は cor ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
索引 — Python 3.6.5 ドキュメント 5564
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... 子 &= augmented assignment * in expression lists in function calls 文 , [1] 演算子 ** in dictionary displays in ... function calls 文 , [1] 演算子 **= augmented assignment *= ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ' ) logger . info ( 'calling auxiliary_module.some_function()' ) auxiliary_module . some_function () logger . ... info ( 'done with auxiliary_module.some_function()' ) そして補助モジュール (auxiliary module) がこち ... logger . info ( 'done doing something' ) def some_function (): module_logger . info ( 'received a call to "so ... me_function"' ) 出力はこのようになります: 2005-03-23 23:47:11, ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
32.3. symtable --- コンパイラの記号表へのアクセス — Python 3.6.5 ドキュメント 5564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 表の型を返します。有り得る値は 'class' , 'module' , 'function' です。 get_id ( ) ¶ 記号表の識別子を返します。 ge ... 子になった記号表のリストを返します。 class symtable. Function ¶ 関数またはメソッドの名前空間。このクラスは Symbo ...
https://man.plustar.jp/python/library/symtable.html - [similar]
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 5564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Timer ( stmt='pass' , setup='pass' , timer=<timer function> , globals=None ) ¶ 小さなコード片の実行時間を計測 ... any times to call timeit() . This is a convenience function that calls timeit() repeatedly so that the total t ... タを渡すことができます: def test (): """Stupid test function""" L = [ i for i in range ( 100 )] if __name__ == ...
https://man.plustar.jp/python/library/timeit.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... バージョン 3.3 で追加. バージョン 3.6.5 で変更: The function now also uses the current locale encoding for the ... バージョン 3.3 で追加. バージョン 3.6.5 で変更: The function now also uses the current locale encoding for the ... passing PyUnicode_FSConverter() as the conversion function: int PyUnicode_FSConverter ( PyObject * obj , void ... d, passing PyUnicode_FSDecoder() as the conversion function: int PyUnicode_FSDecoder ( PyObject * obj , void* ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... want to create a Python interface to the C library function system() [1] . This function takes a null-terminat ... g as argument and returns an integer. We want this function to be callable from Python as follows: >>> import ... Py_complex c ; ok = PyArg_ParseTuple ( args , "D:myfunction" , & c ); /* a complex, also providing a function ... name for errors */ /* Possible Python call: myfunction(1+2j) */ } 1.8. 拡張モジュール関数のキーワードパラ ...
https://man.plustar.jp/python/extending/extending.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ect at 0x...> >>> print ( windll . kernel32 . MyOwnFunction ) Traceback (most recent call last): File "<stdin> ... = _StdcallFuncPtr ( name , self ) AttributeError : function 'MyOwnFunction' not found >>> kernel32 や user32 の ... = _StdcallFuncPtr ( name , self ) AttributeError : function ordinal 0 not found >>> 16.16.1.3. 関数を呼び出す ... 送出されます。 16.16.2.4. 関数プロトタイプ ¶ Foreign functions can also be created by instantiating function pro ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT