Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 177 for string (0.115 sec.)
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... al - part [ exponent - part ] | infinity numeric - string : := [ sign ] numeric - value | [ sign ] nan 他の ... None ) ¶ 引数の平方根を最大精度で求めます。 to_eng_string ( context=None ) ¶ 文字列に変換します。指数が必要な ... act ( x , y ) ¶ x と y の間の差を返します。 to_eng_string ( x ) ¶ 文字列に変換します。指数が必要なら工学表記 ... _exact ( x ) ¶ 最近傍の整数に値を丸めます。 to_sci_string ( x ) ¶ 数値を科学表記で文字列に変換します。 9.4.4 ...
https://man.plustar.jp/python/library/decimal.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to 8 bytes for BLAKE2s). person : personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes for BLA ... for convenience, this implementation accepts byte strings of any size up to the specified length. If the le ... RSON_SIZE ¶ blake2s. PERSON_SIZE ¶ Personalization string length (maximum length accepted by constructors). ... y calling digest() (or hexdigest() for hex-encoded string). >>> from hashlib import blake2b >>> h = blake2b ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... くなりつづけます。 バージョン 3.6 で変更: As well as string values, Path objects are also accepted for the fil ... くなりつづけます。 バージョン 3.6 で変更: As well as string values, Path objects are also accepted for the fil ... c. respectively. バージョン 3.6 で変更: As well as string values, Path objects are also accepted for the fil ... が追加されました。 バージョン 3.6 で変更: As well as string values, Path objects are also accepted for the fil ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rt mymodule >>> pdb . run ( 'mymodule.test()' ) > <string>(0)?() (Pdb) continue > <string>(1)?() (Pdb) conti ... nue NameError: 'spam' > <string>(1)?() (Pdb) バージョン 3.3 で変更: readline モジュ ...
https://man.plustar.jp/python/library/pdb.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a ZIP file, where file can be a path to a file (a string), a file-like object or a path-like object . The m ... r_arcname , data [ , compress_type ] ) ¶ Write the string data to the archive; zinfo_or_arcname is either th ... ドは以下のようなファイル名でアーカイブを作成します: string . pyc # Top level name test / __init__ . pyc # Pac ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
ソート HOW TO — Python 3.6.5 ドキュメント 5094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... 別しない文字列比較の例: >>> sorted ( "This is a test string from Andrew" . split (), key = str . lower ) ['a', ... 'Andrew', 'from', 'is', 'string', 'test', 'This'] key パラメータは単一の引数をとり ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 5094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rue )) {"a": 0, "b": 0, "c": 0} >>> from io import StringIO >>> io = StringIO () >>> json . dump ([ 'streami ... \\ "foo \\ bar"' ) '"foo\x08ar' >>> from io import StringIO >>> io = StringIO ( '["streaming API"]' ) >>> js ... の変換を行います: JSON Python object dict array list string str number (int) int number (real) 浮動小数点数 tr ... ます: Python JSON dict object list, tuple array str string int、float と int や float の派生列挙型 number Tru ...
https://man.plustar.jp/python/library/json.html - [similar]
32.5. token --- Python 解析木と共に使われる定数 — Python 3.6.5 ドキュメント 5094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . ENDMARKER ¶ token. NAME ¶ token. NUMBER ¶ token. STRING ¶ token. NEWLINE ¶ token. INDENT ¶ token. DEDENT ¶ ...
https://man.plustar.jp/python/library/token.html - [similar]
20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 5094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... て行います: from xml.dom.minidom import parse , parseString dom1 = parse ( 'c: \\ temp \\ mydata.xml' ) # pars ... se ( datasource ) # parse an open file dom3 = parseString ( '<myxml>Some data<empty/> some more data</myxml> ... りません。 XML データを文字列で持っている場合、 parseString() を代わりに使うことができます: xml.dom.minidom. p ... arseString ( string , parser=None ) ¶ string を表わす Documen ...
https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
14. 対話入力編集と履歴置換 — Python 3.6.5 ドキュメント 5094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... カル変数、および利用可能なモジュール名を検索します。 string.a のようなドットで区切られた式については、最後の ' ...
https://man.plustar.jp/python/tutorial/interactive.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT