Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 157 for data (0.058 sec.)
Pythonモジュール索引 — Python 3.6.5 ドキュメント 6774
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... te cleanup functions. audioop Manipulate raw audio data. b base64 RFC 3548: Base16, Base32, Base64 Data En ... nt read-eval-print loops. codecs Encode and decode data and streams. codeop Compile (possibly incomplete) ... Python code. collections Container datatypes collections.abc Abstract base classes for con ... o check Unix passwords. csv Write and read tabular data to and from delimited files. ctypes A foreign func ...
https://man.plustar.jp/python/py-modindex.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 6728
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は以下のようなメソッドを持ちます: xmlparser. Parse ( data [ , isfinal ] ) ¶ 文字列 data の内容を解析し、解析 ... 出来ることを意味しますが、複数ファイルは扱えません。 data にはいつでも空の文字列を渡せます。 xmlparser. Pars ... うになります。これにより可能なときに何度も CharacterDataHandler() を呼び出してしまうようなことを避けることが ... は文字列で、 type として渡されます。取り得る値は、 'CDATA' , 'ID' , 'IDREF' , ... です。 default は、文書のイ ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
14.4. xdrlib --- XDR データのエンコードおよびデコード — Python 3.6.5 ドキュメン... 6601
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... py xdrlib モジュールは外部データ表現標準 (External Data Representation Standard) のサポートを実現します。こ ... 成は引数なしで行われます。 class xdrlib. Unpacker ( data ) ¶ Unpacker は Packer と対をなしていて、文字列バッ ... XDR をアンパックするためのクラスです。入力バッファ data を引数に与えてインスタンスを生成します。 参考 RFC ... 1014 - XDR: External Data Representation Standard この RFC が、かつてこのモジ ...
https://man.plustar.jp/python/library/xdrlib.html - [similar]
14.5. plistlib --- Mac OS X .plist ファイルの生成と解析 — Python 3.6.5 ドキュメ... 6566
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、リスト、辞書 (ただし文字列だけがキーになれます)、 Data 、 bytes 、 bytesarray または datetime.datetime の ... が bytes のインスタンスとして返されます。偽の場合、 Data のインスタンスとして返されます。 dict_type は plis ... 出します。 バージョン 3.4 で追加. plistlib. loads ( data , * , fmt=None , use_builtin_types=True , dict_typ ... を使ってください。 plistlib. readPlistFromBytes ( data ) ¶ バイト列オブジェクトから plist データを読み取り ...
https://man.plustar.jp/python/library/plistlib.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6486
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... さい (例: r'(\Deleted)' )。 各命令はタプル: (type, [data, ...]) を返し、 type は通常 'OK' または 'NO' です。 ... data は命令に対する応答をテキストにしたものか、命令に対 ... する実行結果です。各 data は文字列かタプルとなります。タプルの場合、最初の要 ... は呼び出し可能なオブジェクトである必要があります: data = authobject ( response ) It will be called to pro ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 6393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ら検索して、レコードのインデックスを見つけます: >>> data = [( 'red' , 5 ), ( 'blue' , 1 ), ( 'yellow' , 8 ) ... , ( 'black' , 0 )] >>> data . sort ( key = lambda r : r [ 1 ]) >>> keys = [ r ... [ 1 ] for r in data ] # precomputed list of keys >>> data [ bisect_lef ... t ( keys , 0 )] ('black', 0) >>> data [ bisect_left ( keys , 1 )] ('blue', 1) >>> data [ ...
https://man.plustar.jp/python/library/bisect.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 1e87021bc896588bd79e901e2' hashlib. new ( name [ , data ] ) ¶ 一般的なコンストラクタで、第一引数にアルゴリ ... hake. digest ( length ) ¶ Return the digest of the data passed to the update() method so far. This is a by ... calling constructor functions: hashlib. blake2b ( data=b'' , digest_size=64 , key=b'' , salt=b'' , person ... er_size=0 , last_node=False ) ¶ hashlib. blake2s ( data=b'' , digest_size=32 , key=b'' , salt=b'' , person ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
18.5.6. サブプロセス — Python 3.6.5 ドキュメント 6312
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ト列でなければなりません。 communicate() は (stdout_data, stderr_data) のタプルを返します。 input を標準入力 ... exit_future self . output = bytearray () def pipe_data_received ( self , fd , data ): self . output . ext ... end ( data ) def process_exited ( self ): self . exit_future ... # Read the output which was collected by the pipe_data_received() # method of the protocol data = bytes ( ...
https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 6312
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... えば次のようにします: def __init__ ( self ): self . data = [] クラスが __init__() メソッドを定義している場合 ... 種類(データ属性およびメソッド)あります。 データ属性 (data attribute) は、これは Smalltalk の "インスタンス変 ... n an instance attribute is referenced that isn't a data attribute, its class is searched. If the name deno ... できます: class Bag : def __init__ ( self ): self . data = [] def add ( self , x ): self . data . append ( ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 6232
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... h must contain one or more lines of base64 encoded data, and return the decoded bytes . バージョン 3.1 で追 ... input file and write the resulting base64 encoded data to the output file. input and output must be file ... like object s , which can contain arbitrary binary data, and return bytes containing the base64-encoded da ... mport base64 >>> encoded = base64 . b64encode ( b 'data to be encoded' ) >>> encoded b'ZGF0YSB0byBiZSBlbmN ...
https://man.plustar.jp/python/library/base64.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT