Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 72 for next (0.062 sec.)
2. 組み込み関数 — Python 3.6.5 ドキュメント 7133
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () dict() help() min() setattr() all() dir() hex() next() slice() any() divmod() id() object() sorted() as ... ません。 enumerate() によって返されたイテレータの __next__() メソッドは、 (デフォルトでは 0 となる start か ... ればなりません。この場合に生成されるイテレータは、 __next__() を呼ぶ毎に object を引数無しで呼び出します。返 ... バージョン 3.4 で追加: default キーワード専用引数。 next ( iterator [ , default ] ) ¶ iterator の __next__( ...
https://man.plustar.jp/python/library/functions.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 6979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... はイテレータ( iterator )プロトコルをサポートし、 __next__() メソッドが呼ばれた際に常に文字列を返すような任 ... 以下の public なメソッドを持っています: csvreader. __next__ ( ) ¶ reader の反復可能なオブジェクトから、現在の ... eader のインスタンスの場合)として返します。通常は next(reader) のようにして呼び出すことになります。 reade ...
https://man.plustar.jp/python/library/csv.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ation */ struct cell { char * name ; struct cell * next ; }; ctypes コードへの直接的な変換ではこうなるでし ... e ): ... _fields_ = [( "name" , c_char_p ), ... ( "next" , POINTER ( cell ))] ... Traceback (most recent c ... > cell . _fields_ = [( "name" , c_char_p ), ... ( "next" , POINTER ( cell ))] >>> 試してみましょう。 cell ... o" >>> c2 = cell () >>> c2 . name = "bar" >>> c1 . next = pointer ( c2 ) >>> c2 . next = pointer ( c1 ) >> ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 6979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... カル変数が保存される点です。次回そのジェネレータの .next() メソッドを呼ぶと、 yield の直後から関数が実行を再 ... >>> gen <generator object at 0x8117f90> >>> gen . next () 0 >>> gen . next () 1 >>> gen . next () 2 >>> g ... en . next () Traceback (most recent call last): File "stdin" ... ば整数のリストを返すのは、 self.count を 0 にして、 next() メソッドが self.count をインクリメントして返すよ ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... は順に __setitem__() か __delitem__() )。 PEP 3114 : next() 標準メソッドは __next__() に改名されました。 __o ... eval(input()) としてください。 新しい組み込み関数 next() が追加されました。 オブジェクトの __next__() メソ ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... offset ; /* Iterators */ getiterfunc tp_iter ; iternextfunc tp_iternext ; /* Attribute descriptor and subc ... 存在しなければ なりません 。 PyObject * PyObject._ob_next ¶ PyObject * PyObject._ob_prev ¶ これらのフィールド ... ィールドが入っています。さらに、 _ob_prev および _ob_next フィールドがある場合、これらのフィールドもサイズに ... ます。 サブタイプはこのフィールドを継承します。 iternextfunc PyTypeObject.tp_iternext ¶ オプションのポインタ ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
用語集 — Python 3.6.5 ドキュメント 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... tor 関数で生成されるオブジェクトです。 これは、 __anext__() メソッドを使って呼び出されたときに awaitable オ ... vely resumes with another awaitable returned by __anext__() , it picks-up where it left-off. See PEP 492 a ... nous iterator (非同期イテレータ) __aiter__() と __anext__() メソッドを実装したオブジェクトです。 __anext__ ... Iteration 例外を送出するまで 非同期イテレータの __anext__() メソッドが返す awaitable を解決します。 PEP 49 ...
https://man.plustar.jp/python/glossary.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ator raises a concurrent.futures.TimeoutError if __next__() is called and the result isn't available after ... 了したすべてのフューチャは最初に yield されます。 __next__() が呼び出され、その結果が as_completed() の元々 ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 動的な字下げ ¶ After a block-opening statement, the next line is indented by 4 spaces (in the Python Shell ... ). After certain keywords (break, return etc.) the next line is dedented. In leading indentation, Backspac ... is internal connection because no data is visible on external ports. A similar problem is a network mis-co ... es a second, which is about every 50 milleseconds. Next enter b = tk.Button(root, text='button'); b.pack() ...
https://man.plustar.jp/python/library/idle.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , 4 ),) True >>> mock ( 3 , 4 , 5 , key = 'fish' , next = 'w00t!' ) >>> mock . call_args call(3, 4, 5, key ... ='fish', next='w00t!') call_args は、 call_args_list や method_c ... ck () >>> mock ( 3 , 4 ) >>> mock ( key = 'fish' , next = 'w00t!' ) >>> mock . call_args_list [call(), cal ... l(3, 4), call(key='fish', next='w00t!')] >>> expected = [(), (( 3 , 4 ),), ({ 'ke ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT