Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 80 for while (0.102 sec.)
What's New In Python 3.3 — Python 3.6.5 ドキュメント 5999
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を返せます: >>> def accumulate (): ... tally = 0 ... while 1 : ... next = yield ... if next is None : ... ret ... = next ... >>> def gather_tallies ( tallies ): ... while 1 : ... tally = yield from accumulate () ... talli ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
用語集 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... ードから構成されるもののどちらかです。後者には if 、 while 、 for があります。 struct sequence (構造体シーケン ...
https://man.plustar.jp/python/glossary.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... ようになっています。 def counter ( maximum ): i = 0 while i < maximum : val = ( yield i ) # If value provide ... , 3 , 5 , 7 , 9 , 11 , 13 , 15 , ... itertools.takewhile(predicate, iter) は述語が真を返している間だけ要素を ... less_than_10 ( x ): return x < 10 itertools . takewhile ( less_than_10 , itertools . count ()) => 0 , 1 , ... 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 itertools . takewhile ( is_even , itertools . count ()) => 0 itertools.d ...
https://man.plustar.jp/python/howto/functional.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rflowError ( "n too large" ) result = 1 factor = 2 while factor <= n : result *= factor factor += 1 return ...
https://man.plustar.jp/python/library/doctest.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () iterators = [ iter ( it ) for it in iterables ] while iterators : result = [] for it in iterators : elem ...
https://man.plustar.jp/python/library/functions.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... The former is what you would put on sys.meta_path while the latter is what you create using a path entry h ...
https://man.plustar.jp/python/library/importlib.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Content-Length will be used to send bytes objects, while Transfer-Encoding: chunked as specified in RFC 723 ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... has been working on XML-related Python code for a while. Its code distribution, called PyXML, is available ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... remove the smallest item, and inserting a new item while maintaining the heap property is O(lg n). (See htt ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... s destroyed without having been explicitly closed. While the deallocator for such object ensures it closes ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT