Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 251 - 260 of about 273 for THE (0.455 sec.)
はじめに — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... : 多くの場合、関数が返すオブジェクトはその場で (on the fly) 生成されるため、呼び出し側が得る参照は生成され ... item == NULL ) return -1 ; /* Not a sequence, or other failure */ if ( PyLong_Check ( item )) { value = ... nMatches ( PyExc_KeyError )) goto error ; /* Clear the error and use zero: */ PyErr_Clear (); item = PyLo ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
2. setup スクリプトを書く — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... モジュールやパッケージの名前のうしろに、丸括弧(parentheses)でかこわれています。 指定されたバージョンは、そ ... と、distutils は PKG-INFO に作者としてリストします。 These fields should not be used if your package is to ... atible with Python versions prior to 2.2.3 or 2.3. The list is available from the PyPI website . パッケー ...
https://man.plustar.jp/python/distutils/setupscript.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... れます。例えば: config.py: x = 0 # Default value of the 'x' configuration setting mod.py: import config co ... ache : return _cache [( arg1 , arg2 )] # Calculate the value result = ... expensive computation ... _cach ... e [( arg1 , arg2 )] = result # Store result in the cache return result デフォルト値の代わりに、辞書を ... 1 # 5 can't be mutated, we are creating a new object here >>> x 6 >>> y 5 この場合ご覧の通り x と y はまっ ...
https://man.plustar.jp/python/faq/programming.html - [similar]
18.5. asyncio --- 非同期 I/O、イベントループ、コルーチンおよびタスク — Python 3... 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バルループポリシーへのアクセス 18.5.2.7. Customizing the event loop policy 18.5.3. タスクとコルーチン 18.5. ...
https://man.plustar.jp/python/library/asyncio.html - [similar]
6.3. difflib --- 差分の計算を助ける — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s = True )) >>> diff = list ( diff ) # materialize the generated delta into a list >>> print ( '' . join ... てデフォルトで使用されます。 参考 Pattern Matching: The Gestalt Approach John W. Ratcliff と D. E. Metzene ...
https://man.plustar.jp/python/library/difflib.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 算機はネットワーク上にありません (Machine is not on the network) errno. ENOPKG ¶ パッケージがインストールさ ...
https://man.plustar.jp/python/library/errno.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しました。 バージョン 3.4 で変更: Added support for the 'x' , 'xb' and 'xt' modes. バージョン 3.6 で変更: ... を作成する例: import gzip content = b "Lots of content here" with gzip . open ( '/home/joe/file.txt.gz' , ' ... IP 圧縮する例: import gzip s_in = b "Lots of content here" s_out = gzip . compress ( s_in ) 参考 zlib モジ ...
https://man.plustar.jp/python/library/gzip.html - [similar]
18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バルループポリシーへのアクセス 18.5.2.7. Customizing the event loop policy 18.5.3. タスクとコルーチン 18.5. ...
https://man.plustar.jp/python/library/ipc.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nstead, or let ssl.create_default_context() select the system's trusted CA certificates for you. 1つの例外 ...
https://man.plustar.jp/python/library/poplib.html - [similar]
6.4. textwrap --- テキストの折り返しと詰め込み — Python 3.6.5 ドキュメント 3928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... はないことに注意してください: " hello" という行と "\thello" は、同じ先頭の空白文字をもっていないとみなされ ... えば: def test (): # end first line with \ to avoid the empty line! s = ''' \ hello world ''' print ( repr ...
https://man.plustar.jp/python/library/textwrap.html - [similar]