Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 22 for unpack (0.028 sec.)
14.4. xdrlib --- XDR データのエンコードおよびデコード — Python 3.6.5 ドキュメン... 15134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンスタンス生成は引数なしで行われます。 class xdrlib. Unpacker ( data ) ¶ Unpacker は Packer と対をなしていて、 ... ck_farray() と同じやり方でパックされます。 14.4.2. Unpacker オブジェクト ¶ Unpacker クラスは以下のメソッドを ... 提供します: Unpacker. reset ( data ) ¶ 文字列バッファを data でリセッ ... トします。 Unpacker. get_position ( ) ¶ データバッファ中の現在のアン ...
https://man.plustar.jp/python/library/xdrlib.html - [similar]
7.1. struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.6... 10622
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... り書き込みます。オフセットは省略出来ません。 struct. unpack ( fmt , buffer ) ¶ ( pack(fmt, ...) でパックされた ... が要求するサイズと一致しなければなりません。 struct. unpack_from ( fmt , buffer , offset=0 ) ¶ バッファ buffer ... が要求するサイズでなければなりません。 struct. iter_unpack ( fmt , buffer ) ¶ バッファ buffer を、書式文字列 ... バイトに達するまでの残りの部分はヌルで埋められます。 unpack() では、フォーマット文字 'p' は指定された count バ ...
https://man.plustar.jp/python/library/struct.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 10319
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... るか、変数に保存 ( STORE_FAST , STORE_NAME , または UNPACK_SEQUENCE ) します。 バージョン 3.2 で追加. WITH_CL ... ドオブジェクトの co_names 属性へのインデックスです。 UNPACK_SEQUENCE ( count ) ¶ TOS を count 個の個別の値にア ... ンパックして、右から左の順にスタックに積みます。 UNPACK_EX ( counts ) ¶ 星付きの対象ありの代入を実行します ... onto the stack. バージョン 3.6 で追加. BUILD_TUPLE_UNPACK ( count ) ¶ Pops count iterables from the stack, j ...
https://man.plustar.jp/python/library/dis.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 9073
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ているフォーマットのリストから取り除きます。 shutil. unpack_archive ( filename [ , extract_dir [ , format ] ] ... "tar", "gztar", "bztar", "xztar" あるいは register_unpack_format() で登録したその他のフォーマットのどれかです ... 。 指定されなかった場合、 unpack_archive() はアーカイブファイル名の拡張子に対して登 ... 場合、 ValueError を発生させます。 shutil. register_unpack_format ( name , extensions , function [ , extra_ar ...
https://man.plustar.jp/python/library/shutil.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ァイルにするかを示します: #!/usr/bin/env python3 """Unpack a MIME message into a directory of files.""" impor ... (): parser = ArgumentParser ( description = """ \ Unpack a MIME message into a directory of files. """ ) pa ... '-d' , '--directory' , required = True , help = """Unpack the MIME message into the named directory, which w ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 7979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 様々な長さのバイナリレコード形式を操作する pack() や unpack() といった関数を提供しています。 以下の例では、 zi ... first 3 file headers start += 14 fields = struct . unpack ( '<IIIHH' , data [ start : start + 16 ]) crc32 , ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 7979
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ードデータベースへのアクセスを提供します。 pack() , unpack() メソッドでフォーマット文字列を Struct オブジェク ... を作れるのに似ています。モジュールレベルの pack() , unpack() 関数もそのまま使えます; それらは Struct オブジェ ... ( 1972 , 187 , 'abc' ) year , number , name = s . unpack ( data ) You can also pack and unpack data to and ... ing the pack_into(buffer, offset, v1, v2, ...) and unpack_from(buffer, offset) methods. This lets you store ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
1. Distutilsの紹介 — Python 3.6.5 ドキュメント 7828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... e has to do is download foo-1.0.tar.gz (or .zip ), unpack it, and---from the foo-1.0 directory---run python ...
https://man.plustar.jp/python/distutils/introduction.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 7828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ermios , os >>> os . getpgrp () 13341 >>> struct . unpack ( 'h' , fcntl . ioctl ( 0 , termios . TIOCGPGRP , ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 7743
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cache', 'calcsize', 'error', 'pack', 'pack_into', 'unpack', 'unpack_from'] >>> class Shape : ... def __dir__ ...
https://man.plustar.jp/python/library/functions.html - [similar]
PREV 1 2 3 NEXT