Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 211 for OBJECT (0.154 sec.)
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r を渡すと初期値になりますが、 リスト、 bytes-like object または適当な型のイテレーション可能オブジェクトでな ... はバッファインタフェースを実装しており、 bytes-like objects をサポートしている場所ならどこでも利用できます。 ... e ( f ) ¶ すべての要素を (マシンの値の形式で) file object f に書き込みます。 array. tolist ( ) ¶ アレイを同じ ...
https://man.plustar.jp/python/library/array.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ' and 'xt' modes. バージョン 3.6 で変更: path-like object を受け入れるようになりました。 class gzip. GzipFil ... ようになりました。 バージョン 3.6 で変更: path-like object を受け入れるようになりました。 gzip. compress ( da ...
https://man.plustar.jp/python/library/gzip.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... セスに加えて意味のある repr を提供するための、単純な object サブクラスです。 object とは異なり、 SimpleNamespa ...
https://man.plustar.jp/python/library/types.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... est オブジェクトでもかまいません。 data must be an object specifying additional data to be sent to the serve ... を指す文字列でなくてはなりません。 data must be an object specifying additional data to send to the server, ... ts are the only ones that use data . The supported object types include bytes, file-like objects, and iterab ... f data . Content-Length will be used to send bytes objects, while Transfer-Encoding: chunked as specified in ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... いです: print sum ( obj . count for obj in list_all_objects ()) ジェネレータ式はリスト内包とは色々小さい点で違 ... le no longer leaves a partially-initialized module object in sys.modules . The incomplete module object left ... tains__() are now implemented as method_descriptor objects rather than wrapper_descriptor objects. This form ... itertools . tee ( L ) >>> i1 , i2 (<itertools.tee object at 0x402c2080>, <itertools.tee object at 0x402c209 ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... _metaclass__ 変数はもうサポートされません。(これは object を派生しない全てのクラスのデフォルトを簡単に新スタ ... 旧式クラスと、Python 2.2 で導入された、現在まで続く object を派生する (当時の旧からみた) 新スタイル。Python 2 ... モジュールグローバルの __metaclass__ を使わない限り) object を派生しない旧スタイルクラスでしたが、Python 3.x に ... ないのでこれは Python 2.2 から 2.7 での class Clazz(object): と同じ意味です。---) リスト内包表記はもう [... f ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
古いバッファプロトコル — Python 3.6.5 ドキュメント 4652
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 抽象オブジェクトレイヤ (abstract objects layer) » 古いバッファプロトコル ¶ バージョン 3.0 ... あるオブジェクトのバッファビューを取得するために、 PyObject_GetBuffer() (もしくは y* および w* フォーマットコー ... るときには PyBuffer_Release() を呼び出します。 int PyObject_AsCharBuffer ( PyObject *obj , const char **buffer ... 際には -1 を返し、 TypeError をセットします。 int PyObject_AsReadBuffer ( PyObject *obj , const void **buffer ...
https://man.plustar.jp/python/c-api/objbuffer.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 4652
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... iter ( L ) >>> it #doctest: +ELLIPSIS <...iterator object at ...> >>> it . __next__ () # same as next(it) 1 ... obj_total = sum ( obj . count for obj in list_all_objects ()) for...in 節は複数つなげられますが、どれにも、 ... _ints ( 3 ) >>> gen #doctest: +ELLIPSIS <generator object generate_ints at ...> >>> next ( gen ) 0 >>> next ... >>> for item in enumerate ([ 'subject' , 'verb' , 'object' ]): ... print ( item ) (0, 'subject') (1, 'verb') ...
https://man.plustar.jp/python/howto/functional.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 4652
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >>> reobj . match ( 'foobar.txt' ) <_sre.SRE_Match object; span=(0, 10), match='foobar.txt'> 参考 glob モジュ ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
22.7. imghdr --- 画像の形式を決定する — Python 3.6.5 ドキュメント 4652
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は仮定されます。 バージョン 3.6 で変更: path-like object を受け入れるようになりました。 以下に what() からの ...
https://man.plustar.jp/python/library/imghdr.html - [similar]