Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 249 for FOR (0.074 sec.)
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .path.normcase() . fnmatchcase() can be used to perform a case-sensitive comparison, regardless of whethe ... r that's standard for the operating system. 次の例では、カレントディレク ... のファイルを表示しています: import fnmatch import os for file in os . listdir ( '.' ): if fnmatch . fnmatch ... にマッチする names のリストの部分集合を返します。 [n for n in names if fnmatch(n, pattern)] と同じですが、も ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れています: 'posix' , 'nt' , 'java' 。 参考 sys.platform はより細かな粒度を持っています。 os.uname() はシス ... テム依存のバージョン情報を提供します。 platform モジュールはシステムの詳細な識別情報をチェックする ... ged in on the controlling terminal of the process. For most purposes, it is more useful to use getpass.ge ... な環境変数の変更は、 os.system() 、 popen() 、または fork() と execv() で起動されたサブプロセスに影響を与え ...
https://man.plustar.jp/python/library/os.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lt of calling the references needs to be checked before being used. This can be used to avoid creating re ... gram exits, it calls all remaining live finalizers for which atexit is true. They are called in reverse o ... . __init__ ( ob , callback ) self . __counter = 0 for k , v in annotations . items (): setattr ( self , ... needing to preserve the returned finalizer object. For instance >>> import weakref >>> class Object : ... ...
https://man.plustar.jp/python/library/weakref.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : %s \n " % ( key , value )) . encode ( "utf-8" ) for key , value in environ . items ()] return ret with ... print ( "Serving on port 8000..." ) httpd . serve_forever () 上記の環境用関数に加えて、 wsgiref.util モジ ... import FileWrapper # We're using a StringIO-buffer for as the file-like object filelike = StringIO ( "Thi ... ) wrapper = FileWrapper ( filelike , blksize = 5 ) for chunk in wrapper : print ( chunk ) 21.4.2. wsgiref ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
Download — Python 3.6.5 ドキュメント 4819
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... o download an archive containing all the documents for this version of Python in one of various formats, ... e are the size of the download files in megabytes. Format Packed as .zip Packed as .tar.bz2 PDF (US-Lette ... ZIP archives since those are customary on that platform. These are created on Unix using the InfoZIP zip ... gram. Problems If you have comments or suggestions for the Python documentation, please send email to doc ...
https://man.plustar.jp/python/download.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 4819
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... csvfile , delimiter = ' ' , quotechar = '|' ) ... for row in spamreader : ... print ( ', ' . join ( row ... le : ... reader = csv . DictReader ( csvfile ) ... for row in reader : ... print ( row [ 'first_name' ], ... s as described above) to the writer's file object, formatted according to the current dialect. writer オブ ... newline = '' ) as f : reader = csv . reader ( f ) for row in reader : print ( row ) 別の書式での読み込み ...
https://man.plustar.jp/python/library/csv.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 4819
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 数は print_stack() と同じ意味を持ちます。 traceback. format_list ( extracted_list ) ¶ extract_tb() または e ... は内部に改行を含んでいるかもしれません。 traceback. format_exception_only ( etype , value ) ¶ トレースバッ ... セージは、常にリストの最後の文字列です。 traceback. format_exception ( etype , value , tb , limit=None , c ... は無視され、 value の型から推論されます。 traceback. format_exc ( limit=None , chain=True ) ¶ これは、 prin ...
https://man.plustar.jp/python/library/traceback.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 4819
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 開発プロセスは 2 つの重要な変更を経験しました: SourceForge の課題トラッカーから、カスタイマイズした Roundup ... ndup ¶ もう随分長いこと Python 開発者たちは、SourceForge のバグトラッカーにイライラを高め続けてきました。 ... SourceForge がホストするソリューションには全くカスタマイズの ... について、異なるプロダクトのセットアップをし、SourceForge からバグ報告とパッチのインポートをする依頼の呼び ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のモジュールは、十進数型、算術コンテキスト (context for arithmetic)、そしてシグナル (signal) という三つの概 ... with localcontext () as ctx : ctx . prec = 42 # Perform a high precision calculation s = calculate_someth ... 。以下に例を示します: # Set applicationwide defaults for all threads about to be launched DefaultContext . ... ' , trailneg = '' ): """Convert Decimal to a money formatted string. places: required number of places af ...
https://man.plustar.jp/python/library/decimal.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... errors. MessageParseError ¶ This is the base class for exceptions raised by the Parser class. It is deriv ... the method is called. Header may raise this error for certain base64 decoding errors, and when an attemp ... ded to the message where the problem was found, so for example, if a message nested inside a multipart/al ... ternative had a malformed header, that nested message object would have a ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT