Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 156 for all (0.072 sec.)
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... [ 'x' ] # Delete from current context list ( d ) # All nested values k in d # Check all nested values len ... ( d ) # Number of nested values d . items () # All nested items dict ( d ) # Flatten into a regular d ... epChainMap ( ChainMap ): 'Variant of ChainMap that allows direct updates to inner scopes' def __setitem__ ... するカウンタツールが提供されています。例えば: >>> # Tally occurrences of words in a list >>> cnt = Counter ...
https://man.plustar.jp/python/library/collections.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... zily; func is executed asynchronously and several calls to func may be made concurrently. The returned it ... concurrent.futures.TimeoutError if __next__() is called and the result isn't available after timeout sec ... onds from the original call to Executor.map() . timeout can be an int or a flo ... e , there is no limit to the wait time. If a func call raises an exception, then that exception will be r ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ここで language はそれぞれ環境変数 LANGUAGE 、 LC_ALL 、 LC_MESSAGES 、 LANG の中から検索されます。 loca ... find ( domain , localedir=None , languages=None , all=False ) ¶ この関数は標準的な .mo ファイル検索アルゴ ... 与えられなかった場合、以下の環境変数: LANGUAGE 、 LC_ALL 、 LC_MESSAGES 、および LANG が検索されます。空でな ... ファイルが見つからなかった場合、 None が返されます。 all が与えられていれば、全ファイル名のリストが言語リス ...
https://man.plustar.jp/python/library/gettext.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... pIteration : return for d in deques : # load it to all the deques d . append ( newval ) yield mydeque . p ... xt ( islice ( iterable , n , None ), default ) def all_equal ( iterable ): "Returns True if all the eleme ... tfunc ( func , times = None , * args ): """Repeat calls to func with specified arguments. Example: repeat ... "List unique elements, preserving order. Remember all elements ever seen." # unique_everseen('AAAABBBCCD ...
https://man.plustar.jp/python/library/itertools.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... an NNTP server on the local machine and intend to call reader-specific commands, such as group . If you g ... TP class supports the with statement to unconditionally consume OSError exceptions and to close the NNTP ... ead セキュリティで考慮すべき点 for best practices. All other parameters behave the same as for NNTP . Not ... st of lines, tuples or objects that the method normally returns will be empty. バージョン 3.2 で変更: 以下 ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 5838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... {'name': 'Colombia', 'direction': 'E'} Element.findall() はタグで現在の要素の直接の子要素のみ検索します。 ... 属性にアクセスします: >>> for country in root . findall ( 'country' ): ... rank = country . find ( 'rank' ... ry を削除したい場合: >>> for country in root . findall ( 'country' ): ... rank = int ( country . find ( ' ... 、渡り歩くためのひとつの方法としては、 find() や findall() に渡す xpath で全てのタグや属性に手作業で URI を ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 5723
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... の関数は偽を返します。 int Py_FinalizeEx ( ) ¶ Undo all initializations made by Py_Initialize() and subseq ... uent use of Python/C API functions, and destroy all sub-interpreters (see Py_NewInterpreter() below) t ... were created and not yet destroyed since the last call to Py_Initialize() . Ideally, this frees all memor ... y allocated by the Python interpreter. This is a no-op w ...
https://man.plustar.jp/python/c-api/init.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 5723
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... esn't include the curses module. A ported version called UniCurses is available. You could also try the C ... eady familiar with curses programming in C, it's really easy to transfer that knowledge to Python. The bi ... hing, curses must be initialized. This is done by calling the initscr() function, which will determine th ... object representing the entire screen; this is usually called stdscr after the name of the corresponding ...
https://man.plustar.jp/python/howto/curses.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 5723
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : 4096 )。 Unlike asyncore.dispatcher , async_chat allows you to define a FIFO queue of producers . A pro ... hannel's queue to ensure its transmission. This is all you need to do to have the channel write the data ... e producer queue associated with the channel. When all currently-pushed producers have been exhausted the ... channel will consume this producer's data by calling its more() method and send the data to the remo ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 5723
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます: import locale locale . setlocale ( locale . LC_ALL , '' ) code = locale . getpreferredencoding () この ... virtual screen may be updated by a noutrefresh() call after write operations such as addstr() have been ... performed on a window. The normal refresh() call is simply noutrefresh() followed by doupdate() ; i ... ps reduce screen flicker by issuing noutrefresh() calls on all windows, followed by a single doupdate() . ...
https://man.plustar.jp/python/library/curses.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT