Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 130 for No (0.098 sec.)
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... できます。 class dis. Bytecode ( x , * , first_line=None , current_offset=None ) ¶ 関数、ジェネレータ、メ ... ruction インスタンスとして返します。 first_line が None でない場合は、それを逆アセンブルしたコードのソー ... ドオブジェクトから直接取得します。 current_offset が None でない場合は、逆アセンブルされたコードでのあるイ ... バージョン 3.2 で追加. dis. show_code ( x , * , file=None ) ¶ 渡された関数、メソッド、ソースコード文字列、 ...
https://man.plustar.jp/python/library/dis.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... that class, and with the default behavior of certain other methods being slightly different. We also doc ... at, while supported by the EmailMessage class, are not recommended unless you are dealing with legacy co ... ssage ) policy Compat32 . If you are going to use another policy, you should be using the EmailMessage c ... e and value are separated by a colon. The colon is not part of either the field name or the field value. ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ょう。 gettext. bindtextdomain ( domain , localedir=None ) ¶ domain をロケールディレクトリ localedir に対 ... NG の中から検索されます。 localedir が省略されるか None の場合、現在 domain に対応付けられているロケール ... ettext. bind_textdomain_codeset ( domain , codeset=None ) ¶ domain を codeset に対応付け、 lgettext() , ... ードセットを返します。 gettext. textdomain ( domain=None ) ¶ 現在のグローバルドメインを変更したり調べたり ...
https://man.plustar.jp/python/library/gettext.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... [, step] seq[start:stop:step] islice('ABCDEFG', 2, None) --> C D E F G starmap() func, seq func(*seq[0]) ... [3, 4, 6, 6, 6, 9, 9, 9, 9, 9] # Amortize a 5% loan of 1000 with 4 annual payments of 90 >>> cashflows ... C CC pool = tuple ( iterable ) n = len ( pool ) if not n and r : return indices = [ 0 ] * r yield tuple ... terable = iter ( iterable ) for x in iterable : if not predicate ( x ): yield x break for x in iterable ...
https://man.plustar.jp/python/library/itertools.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 送出されます。 locale. setlocale ( category , locale=None ) ¶ locale が渡され None でない場合、 setlocale( ... いロケールの設定が返されます。 locale が省略されたり None の場合、 category の現在の設定が返されます。 set ... l_point and thousands_sep byte strings if they are non-ASCII or longer than 1 byte, and the LC_NUMERIC l ... her threads. バージョン 3.6.5 で変更: The function now sets temporarily the LC_CTYPE locale to the LC_NU ...
https://man.plustar.jp/python/library/locale.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nnect() function for how the type detection works. Note that the case of typename and the name of the ty ... 3 . connect ( ":memory:" ) con . isolation_level = None cur = con . cursor () buffer = "" print ( "Enter ... n_level ¶ 現在の分離レベルを取得または設定します。 None で自動コミットモードまたは "DEFERRED", "IMMEDIAT ... います! execute ( sql [ , parameters ] ) ¶ This is a nonstandard shortcut that creates a cursor object by ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 刻を表現する文字列に変換します。 secs を指定しないか None を指定した場合、 time() が返す値を現在の時刻とし ... する関数は以下の通りです: 'clock' : time.clock() 'monotonic' : time.monotonic() 'perf_counter' : time.per ... Refer to Clock ID Constants for possible values. monotonic : クロック値が後戻りすることがない場合 True が ... ラグは常にゼロとして扱われます。 secs を指定しないか None を指定した場合、 time() が返す値を現在の時刻とし ...
https://man.plustar.jp/python/library/time.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... orms, as well as on Windows systems. (Tk itself is not part of Python; it is maintained at ActiveState.) ... om tkinter import * class tkinter. Tk ( screenName=None , baseName=None , className='Tk' , useTk=1 ) ¶ T ... プリタが関連づけられます。 tkinter. Tcl ( screenName=None , baseName=None , className='Tk' , useTk=0 ) ¶ T ... の、その場しのぎ的なマニュアルです。 謝辞: Tk は John Ousterhout が Berkeley の在籍中に作成しました。 Tki ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ot . findall ( "." ) # All 'neighbor' grand-children of 'country' children of the top-level # elements r ... oot . findall ( "./country/neighbor" ) # Nodes with name='Singapore' that have a 'year' child ... ndall ( ".//year/..[@name='Singapore']" ) # 'year' nodes that are children of nodes with name='Singapore ... ".//*[@name='Singapore']/year" ) # All 'neighbor' nodes that are the second child of their parent root ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... モジュールを利用したいのであれば、 PKZIP Application Note に定義されている ZIP ファイルフォーマットの理解が ... めのクラスです。 class zipfile. ZipInfo ( filename='NoName' , date_time=(1980 , 1 , 1 , 0 , 0 , 0) ) ¶ ア ... 出に失敗する場合があります。 参考 PKZIP Application Note ZIP ファイルフォーマットおよびアルゴリズムを作成 ... hen additional files are added to it. If file does not refer to a ZIP file, then a new ZIP archive is ap ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
PREV 3 4 5 6 7 8 9 10 11 12 13 NEXT