Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 47 for map (0.019 sec.)
- 19.5. mimetypes --- ファイル名を MIME 型へマップする — Python 3.6.5 ドキュメン... 14015
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
files が与えられていれば、これはデフォルトの type map を増やすために使われる、一連のファイル名でなければ...
異なる場所にインストールされます。 mimetypes. suffix_map ¶ サフィックスをサフィックスにマップする辞書。これ...
うに .tar.gz にマップされます。 mimetypes. encodings_map ¶ ファイル名拡張子を符号化方式型にマッピングする辞...
書。 mimetypes. types_map ¶ ファイル名拡張子を MIME 型にマップする辞書。 mim...
- https://man.plustar.jp/python/library/mimetypes.html - [similar]
- 10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 12844
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
. のシーケンスを作成します。同じことを Python では map() と count() を組合せて map(f, count()) という形で...
マップすることで効率的な内積計算を実現できます: sum(map(operator.mul, vector1, vector2)) 。 Infinite itera...
step] islice('ABCDEFG', 2, None) --> C D E F G starmap() func, seq func(*seq[0]), func(*seq[1]), ... star...
ce relation https://en.wikipedia.org/wiki/Logistic_map >>> logistic_map = lambda x , _ : r * x * ( 1 - x...
- https://man.plustar.jp/python/library/itertools.html - [similar]
- 21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 11081
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ocaladdr , remoteaddr , data_size_limit=33554432 , map=None , enable_SMTPUTF8=False , decode_data=False )...
数を指定します。 None や 0 の場合上限はありません。 map is the socket map to use for connections (an initi...
alue). If not specified the asyncore global socket map is used. enable_SMTPUTF8 determines whether the SM...
ムの SMTPChannel を使います。 バージョン 3.4 で追加: map コンストラクタ引数。 バージョン 3.5 で変更: locala...
- https://man.plustar.jp/python/library/smtpd.html - [similar]
- 17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 9090
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
== '__main__' : with Pool ( 5 ) as p : print ( p . map ( f , [ 1 , 2 , 3 ])) 標準出力に以下が出力されます...
wn or forkserver start methods will also start a semaphore tracker process which tracks the unlinked name...
d semaphores created by processes of the program. When all...
processes have exited the semaphore tracker unlinks any remaining semaphores. Usua...
- https://man.plustar.jp/python/library/multiprocessing.html - [similar]
- 18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 8968
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
します。 asyncore. loop ( [ timeout [ , use_poll [ , map [ , count ] ] ] ] ) ¶ ポーリングループを開始し、co...
() が使われます (デフォルト値は False です)。 引数 map には、監視するチャネルをアイテムとして格納した辞書...
を指定します。チャネルがクローズされた時に map からそのチャネルが削除されます。 map が省略された場...
ynchat.async_chat とそのサブクラス) は自由に混ぜて map に入れることができます。 class asyncore. dispatche...
- https://man.plustar.jp/python/library/asyncore.html - [similar]
- 18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 8968
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 18. プロセス間通信とネットワーク » 18.9. mmap --- メモリマップファイル ¶ メモリにマップされたファ...
は可変です。 bytearray が期待されるほとんどの場所で mmap オブジェクトを利用できます。例えば、メモリマップフ...
メモリマップドファイルは Unix と Windows で異なる mmap コンストラクタで生成されます。どちらの場合も、更新...
ができます。 access が指定されない場合、 Windows の mmap は書き込み可能マップを返します。 3つのアクセス型す...
- https://man.plustar.jp/python/library/mmap.html - [similar]
- 32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 8846
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
を呼び出します。リスト内包表記の実装に使われます。 MAP_ADD ( i ) ¶ dict.setitem(TOS1[-i], TOS, TOS1) を呼...
す。 バージョン 3.1 で追加. SET_ADD , LIST_APPEND , MAP_ADD は、追加した値または key/value ペアをスタックか...
動作しますが、この命令は set を作り出します。 BUILD_MAP ( count ) ¶ Pushes a new dictionary object onto th...
ary pre-sized to hold count items. BUILD_CONST_KEY_MAP ( count ) ¶ The version of BUILD_MAP specialized f...
- https://man.plustar.jp/python/library/dis.html - [similar]
- 17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 8390
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
t ( pow , 323 , 1235 ) print ( future . result ()) map ( func , *iterables , timeout=None , chunksize=1 )...
¶ Similar to map(func, *iterables) except: the iterables are collec...
timeout seconds from the original call to Executor.map() . timeout can be an int or a float. If timeout i...
ャットダウンにより後に Executor.submit() と Executor.map() を呼び出すと RuntimeError が送出されます。 wait...
- https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
- What's New In Python 3.0 — Python 3.6.5 ドキュメント 8269
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
ct.itervalues() メソッドはもうサポートされません。 map() と filter() はイテレータを返します。もしも本物の...
力シーケンスが同じ長さの場合であれば、簡単に直すなら map() を list() で包みます。例えば list(map(...)) とい...
ーなのは、関数に副作用を起こさせるために呼び出される map() です; この場合確実な変換は普通に for ループを使う...
)。 入力シーケンスの長さが同じとは限らないならば、 map() は最も短いシーケンスが消費されつくすと処理をやめ...
- https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
- 26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 8147
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
tertools.ifilter() , itertools.izip() , itertools.imap() のインポートを削除します。また itertools.ifilter...
tertools.ifilter() , itertools.izip() , itertools.imap() を使っている箇所を同等の組み込み関数で置き換えま...
に変換されます。 long ¶ long を int に変更します。 map ¶ list 呼び出しの中の map() をラップします。また、...
map(None, x) を list(x) に変換します。 from future_bui...
- https://man.plustar.jp/python/library/2to3.html - [similar]