Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 34 for verbose (0.009 sec.)
13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) で返されるリストと同じ順番です。 TarFile. list ( verbose=True , * , members=None ) ¶ 内容の一覧を sys.stdou ... t に出力します。 verbose が False の場合、メンバー名のみ表示します。 True の ... tarfile> ¶ tarfile が有効かどうか調べます。 -v , --verbose ¶ 詳細も出力します。 13.6.4. 使用例 ¶ tar アーカイ ...
https://man.plustar.jp/python/library/tarfile.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... gument ( '-v' , action = 'store_true' , dest = 'is_verbose' , help = 'produce verbose output' ) parser . add_ ... - help show this help message and exit - v produce verbose output - o FILE direct output to FILE instead of s ... rgparse - example . py - v { 'output' : None , 'is_verbose' : True , 'context' : 0 , 'inputs' : []} -> ./ pyt ... - C 4 file1 file2 { 'output' : '/tmp/output' , 'is_verbose' : True , 'context' : 4 , 'inputs' : [ 'file1' , ' ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 7461
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ections. namedtuple ( typename , field_names , * , verbose=False , rename=False , module=None ) ¶ typename と ... 去され、 ['abc', '_1', 'ghi', '_3'] に変換されます。 verbose が真なら、クラス定義が構築された後に表示されます。 ... のサポートが追加されました。 バージョン 3.6 で変更: verbose と rename 引数が キーワード専用引数 になりました. ...
https://man.plustar.jp/python/library/collections.html - [similar]
索引 — Python 3.6.5 ドキュメント 7365
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... ドラインオプション -v コマンドラインオプション -v, --verbose tarfile コマンドラインオプション timeit コマンドラ ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
26. 開発ツール — Python 3.6.5 ドキュメント 7365
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ックする 26.6.3.12. Tracking order of calls and less verbose call assertions 26.6.3.13. More complex argument m ...
https://man.plustar.jp/python/library/development.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 7365
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( base_name , format [ , root_dir [ , base_dir [ , verbose [ , dry_run [ , owner [ , group [ , logger ] ] ] ] ... ん。これは普通は logging.Logger のインスタンスです。 verbose 引数は使用されず、非推奨です。 shutil. get_archive ...
https://man.plustar.jp/python/library/shutil.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 7269
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のアクションはキーワード引数の数を数えます。例えば、verboseレベルを上げるのに役立ちます: >>> parser = argparse ... . ArgumentParser () >>> parser . add_argument ( '--verbose' , '-v' , action = 'count' ) >>> parser . parse_ar ... gs ([ '-vvv' ]) Namespace(verbose=3) 'help' - このアクションは現在のパーサー中のすべ ...
https://man.plustar.jp/python/library/argparse.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 7269
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 規表現フラグ。デフォルト値は re.IGNORECASE です。 re.VERBOSE が常にフラグに追加されるということに注意してくださ ... い。したがって、カスタムな idpattern は verbose 正規表現の規約に従わなければなりません。 バージョン ...
https://man.plustar.jp/python/library/string.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 7269
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ith () 26.6.3.12. Tracking order of calls and less verbose call assertions ¶ The Mock class allows you to tra ... ックする 26.6.3.12. Tracking order of calls and less verbose call assertions 26.6.3.13. More complex argument m ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 7189
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... -clock ¶ time.clock() を使用する (廃止予定) -v , --verbose ¶ 時間計測の結果をそのまま詳細な数値でくり返し表示 ...
https://man.plustar.jp/python/library/timeit.html - [similar]
PREV 1 2 3 4 NEXT