Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 331 for OF (0.109 sec.)
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 4821
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... again) errno. ENOMEM ¶ 空きメモリがありません (Out of memory) errno. EACCES ¶ 許可がありません (Permissi ... ESPIPE ¶ 不正なシークです (Illegal seek) errno. EROFS ¶ リードオンリーのファイルシステムです (Read-only ... 引数が関数の定義域を越えています (Math argument out of domain of func) errno. ERANGE ¶ 表現できない数学演 ... ¶ 指定された型のメッセージはありません (No message of desired type) errno. EIDRM ¶ 識別子が除去されました ...
https://man.plustar.jp/python/library/errno.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 4821
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... characters after the last non-whitespace character of a line by applying str.rstrip to each line, includ ... 5.1.6. Debug メニュー (Shell ウィンドウのみ) ¶ Go to File/Line [ファイル/行へ移動] カーソルのある現在行の ... 替え) (Editor ウィンドウのみ) Open a pane at the top of the edit window which shows the block context of t ... he code which has scrolled above the top of the window. 25.5.1.8. Window メニュー (Shell ウィン ...
https://man.plustar.jp/python/library/idle.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 4821
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 自動的に番号が振られるようになりました: >>> 'Sir {} of {} ' . format ( 'Gallahad' , 'Camelot' ) 'Sir Gall ... ahad of Camelot' 以前は、文字列は 'Sir {0} of {1}' のように ... by the garbage collector. This can reduce the size of collections and therefore the garbage collection o ... unning programs, depending on their particular use of datatypes. (Contributed by Antoine Pitrou, bpo-468 ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 4793
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... バイスに接続された標準入力とともに起動された場合、 EOF (end-of-file 文字。 UNIX では Ctrl-D で、Windows で ... t statements and any code conditional on the value of __debug__ . Augment the filename for compiled ( by ... unt to output the total reference count and number of used memory blocks when the program finishes or af ... ださい。 -X showalloccount to output the total count of allocated objects for each type when the program f ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 4766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... apping_Length ( PyObject *o ) ¶ Returns the number of keys in object o on success, and -1 on failure. Fo ... ey ) ¶ Return value: New reference. Return element of o corresponding to the object key or NULL on failu ... re. This is the equivalent of the Python expression o[key] . int PyMapping_SetIt ... o . Returns -1 on failure. This is the equivalent of the Python statement o[key] = v . 関連キーワード: ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 4766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... fications right back to the source file. (A backup of the original file is made unless -n is also given. ... ンデントは保存されます。 By default, 2to3 runs a set of predefined fixers . The -l flag lists all availabl ... e fixers. An explicit set of fixers to run can be given with -f . Likewise the ... red with this option. The -v option enables output of more information on the translation process. Since ...
https://man.plustar.jp/python/library/2to3.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 4766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... >>> 17 % 3 # the % operator returns the remainder of the division 2 >>> 5 * 3 + 2 # result * divisor + ... 5 ** 2 # 5 squared 25 >>> 2 ** 7 # 2 to the power of 7 128 等号 ( = ) は変数に値を代入します。代入を行っ ... line 1 , in <module> IndexError : string index out of range しかし、スライスで範囲外のインデックスを使っ ... 5 ] # something's wrong here >>> 4 ** 3 # the cube of 4 is 64, not 65! 64 >>> cubes [ 3 ] = 64 # replace ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 4739
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... e_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName left out */ pModule = PyImport_Import ( pNam ... pArgs ); if ( pValue != NULL ) { printf ( "Result of call: %ld \n " , PyLong_AsLong ( pValue )); Py_DEC ... ultiply multiply 3 2 Will compute 3 times 2 Result of call: 6 この程度の機能を実現するにはプログラムがい ... e_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName left out */ pModule = PyImport_Import ( pNam ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 4739
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g file is nearly maxBytes in length; but if either of maxBytes or backupCount is zero, rollover never oc ... , to the filename. For example, with a backupCount of 5 and a base file name of app.log , you would get ... a datetime.time instance which specifies the time of day when rollover occurs, for the cases where roll ... the normal interval calculation. 注釈 Calculation of the initial rollover time is done when the handler ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
19.9. quopri --- MIME quoted-printable 形式データのエンコードおよびデコード — P... 4739
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... echanisms for Specifying and Describing the Format of Internet Message Bodies" で定義されている quoted-p ... , quotetabs , header=False ) ¶ Encode the contents of the input file and write the resulting quoted-prin ... ed. Note that spaces and tabs appearing at the end of lines are always encoded, as per RFC 1521 . header ... ult, it sends a False value to quotetabs parameter of the encode() function. 参考 base64 モジュール MIME ...
https://man.plustar.jp/python/library/quopri.html - [similar]