Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 157 for data (0.063 sec.)
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6232
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... terable(['ABC', 'DEF']) --> A B C D E F compress() data, selectors (d[0] if s[0]), (d[1] if s[1]), ... com ... 利用するだけで一階の 漸化式 をモデル化できます: >>> data = [ 3 , 4 , 6 , 2 , 1 , 9 , 0 , 7 , 5 , 8 ] >>> li ... st ( accumulate ( data , operator . mul )) # running product [3, 12, 72, ... 44, 144, 1296, 0, 0, 0, 0] >>> list ( accumulate ( data , max )) # running maximum [3, 4, 6, 6, 6, 9, 9, 9 ...
https://man.plustar.jp/python/library/itertools.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 6232
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... rt struct with open ( 'myfile.zip' , 'rb' ) as f : data = f . read () start = 0 for i in range ( 3 ): # sh ... start += 14 fields = struct . unpack ( '<IIIHH' , data [ start : start + 16 ]) crc32 , comp_size , uncomp ... esize , extra_size = fields start += 16 filename = data [ start : start + filenamesize ] start += filename ... size extra = data [ start : start + extra_size ] print ( filename , ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 6151
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 。 バージョン 3.3 で追加. Py_UCS1 * PyUnicode_1BYTE_DATA ( PyObject *o ) ¶ Py_UCS2 * PyUnicode_2BYTE_DATA ( ... PyObject *o ) ¶ Py_UCS4 * PyUnicode_4BYTE_DATA ( PyObject *o ) ¶ 文字に直接アクセスするために、 U ... はしません)。 バージョン 3.3 で追加. void* PyUnicode_DATA ( PyObject *o ) ¶ 生の unicode バッファへの void ポ ... .3 で追加. void PyUnicode_WRITE ( int kind , void *data , Py_ssize_t index , Py_UCS4 value ) ¶ 正統な表現形 ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 6151
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ry defaults to the policy message_factory . feed ( data ) ¶ Feed the parser some more data. data should be ... e ( ) ¶ Complete the parsing of all previously fed data and return the root message object. It is undefine ... . parse ( fp , headersonly=False ) ¶ Read all the data from the binary file-like object fp , parse the re ... eader block is terminated either by the end of the data or by a blank line. Following the header block is ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 6105
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... work with unicode and those that work with binary data work with the bytes type from Python 3 (which is a ... e following table lists the unique methods of each data type across Python 2 & 3 (e.g., the decode() metho ... d is usable on the equivalent binary data type in either Python 2 or 3, but it can't be used ... by the textual data type consistently between Python 2 and 3 because s ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 6070
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は以下のコードに集約されています ( key は文字列で、 data は任意のオブジェクトです): import shelve d = shelv ... et suffix added by low-level # library d [ key ] = data # store data at key (overwrites old data if # usin ... g an existing key) data = d [ key ] # retrieve a COPY of data at key (rais ... KeyError # if no such key) del d [ key ] # delete data stored at key (raises KeyError # if no such key) f ...
https://man.plustar.jp/python/library/shelve.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 5989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bject that encodes information about the extracted data. To find the handler, look for the following keys ... encode information needed to interpret the stored data. To find the handler, obtain the type of obj ( typ ... ge provides only one concrete content manager, raw_data_manager , although more may be added in the future ... . raw_data_manager is the content_manager provided by EmailPo ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 5908
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » ユーティリティ » データ整列化 (data marshalling) のサポート ¶ 以下のルーチン群は、 mar ... ect * PyMarshal_ReadObjectFromString ( const char *data , Py_ssize_t len ) ¶ Return value: New reference. ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
2. setup スクリプトを書く — Python 3.6.5 ドキュメント 5908
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ケージデータは関数 setup() にキーワード引数 package_data を与えることで追加できます。この値はパッケージ名か ... setup . py src / mypkg / __init__ . py module . py data / tables . dat spoons . dat forks . dat 対応する s ... , package_dir = { 'mypkg' : 'src/mypkg' }, package_data = { 'mypkg' : [ 'data/*.dat' ]}, ) バージョン 3.1 ... で変更: テンプレートが提供されない時、全ての package_data にマッチするファイルが MANIFEST ファイルに追加され ...
https://man.plustar.jp/python/distutils/setupscript.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntation, but since Unicode cannot represent binary data directly, the message is of necessity transformed ... fp must support a write method that accepts binary data. If optional mangle_from_ is True , put a > charac ... .message . Because strings cannot represent binary data, the Generator class must convert any binary data ... fp must support a write method that accepts string data. If optional mangle_from_ is True , put a > charac ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT