Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 178 for This (0.117 sec.)
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... nstance reference is called self but may be called this or any other variable name. To support method call ... ethod for binding methods during attribute access. This means that all functions are non-data descriptors ... oked from an object. In pure python, it works like this: class Function ( object ): . . . def __get__ ( se ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rom the iterator. When using ProcessPoolExecutor , this method chops iterables into a number of chunks whi ... future (): f = executor . submit ( pow , 5 , 2 ) # This will never complete because there is only one work ... er thread and # it is executing this function. print ( f . result ()) executor = Thread ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... なってしまう場合には OverflowError が送出されます。 This isn't quite equivalent to date1 + (-timedelta), be ... __format__ ( format ) ¶ Same as date.strftime() . This makes it possible to specify a format string for a ... mat ( d , "day" , "month" ) 'The day is 11, the month is March.' 8.1.4. datetime オブジェクト ¶ datetime オ ... e adjustments are done even if the input is aware. This isn't quite equivalent to datetime1 + (-timedelta) ...
https://man.plustar.jp/python/library/datetime.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cation' ) _ = gettext . gettext # ... print ( _ ( 'This is a translatable string.' )) 23.1.2. クラス形式の ... 込んで翻訳対象候補であることを示します: print ( _ ( 'This string will be translated.' )) 利便性を高めるために ... ssage = cat . ngettext ( 'There is %(num)d file in this directory' , 'There are %(num)d files in this dire ... ます。 この例の N_() という名前は好きに選べます; MarkThisStringForTranslation() という名前にしてしまっても構 ...
https://man.plustar.jp/python/library/gettext.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... h frame. If f is None , the current stack is used. This helper is used with StackSummary.extract() . バージ ... yielding the frame and line number for each frame. This helper is used with StackSummary.extract() . バージ ... kSummary を構築します。 If limit is supplied, only this many frames are taken from frame_gen . If lookup_l ...
https://man.plustar.jp/python/library/traceback.html - [similar]
6.5. unicodedata --- Unicode データベース — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ービス » 6.5. unicodedata --- Unicode データベース ¶ This module provides access to the Unicode Character Da ... for all Unicode characters. The data contained in this database is compiled from the UCD version 9.0.0 . ...
https://man.plustar.jp/python/library/unicodedata.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... itlog ( * args ): ... pass # Remember to implement this! ... 4.6. 関数を定義する ¶ フィボナッチ数列 (Fibon ... = 'voom' , type = 'Norwegian Blue' ): print ( "-- This parrot wouldn't" , action , end = ' ' ) print ( "i ... e = 'a stiff' , action = 'voom' ): ... print ( "-- This parrot wouldn't" , action , end = ' ' ) ... print ... ised" , "action" : "VOOM" } >>> parrot ( ** d ) -- This parrot wouldn't VOOM if you put four million volts ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 5152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 数の内部で発生した例外も処理します。例えば: >>> def this_fails (): ... x = 1 / 0 ... >>> try : ... this_fai ... ror ( Exception ): """Base class for exceptions in this module.""" pass class InputError ( Error ): """Exc ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 5097
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... since the last call to Py_Initialize() . Ideally, this frees all memory allocated by the Python interpret ... er. This is a no-op when called for a second time (without ... * Release the thread. No Python API allowed beyond this point. */ PyGILState_Release ( gstate ); PyGILStat ... を呼び出してください。 PyThreadState * PyGILState_GetThisThreadState ( ) ¶ このスレッドの現在のスレッドの状態 ...
https://man.plustar.jp/python/c-api/init.html - [similar]
モジュールオブジェクト (module object) — Python 3.6.5 ドキュメント 5097
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ersal of the module object, or NULL if not needed. This function may be called before module state is allo ... aring of the module object, or NULL if not needed. This function may be called before module state is allo ... ation of the module object, or NULL if not needed. This function may be called before module state is allo ...
https://man.plustar.jp/python/c-api/module.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT