Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 234 for IF (0.054 sec.)
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 4946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... あなたがサポートする Python バージョンを trove classifier で正しく明記すべきです。あなたのプロジェクトはま ... u don't design APIs that can take both due to the difficulty of keeping the code working; as stated earl ... ier it is difficult to do well). In Python 2 this means making s ... . (there is a __future__ import to force all unspecified literals to be Unicode, but usage has shown it ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 4946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... coding. The return value is the converted line(s). If the optional argument quotetabs is present and tru ... e, all tabs and spaces will be encoded. If the optional argument istext is present and true, ... t encoded but trailing whitespace will be encoded. If the optional argument header is present and true, ... spaces will be encoded as underscores per RFC1522. If the optional argument header is present and false, ...
https://man.plustar.jp/python/library/binascii.html - [similar]
32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 4946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... つシーケンスです。この構造の注意すべき重要な側面は、 if_stmt の中のキーワード if のような親ノードの型を識別 ... くノードツリーに含まれているということです。例えば、 if キーワードはタプル (1, 'if') と表されます。ここで、 ... 要なときに返される別の形式では、同じトークンが (1, 'if', 12) のように表されます。ここでは、 12 が終端記号 ... 別されたソーステキストの追加は全くありません。上記の if キーワードの例が代表的なものです。終端記号のいろい ...
https://man.plustar.jp/python/library/parser.html - [similar]
29.13. site --- サイト固有の設定フック — Python 3.6.5 ドキュメント 4946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... (常にこの順序で) os.pathsep 区切りで表示されます。 If any option is given, the script will exit with one ... of these values: O if the user site-packages directory is enabled, 1 if ... it was disabled by the user, 2 if it is disabled for security reasons or by an admin ... istrator, and a value greater than 2 if there is an error. 参考 PEP 370 -- ユーザごとの si ...
https://man.plustar.jp/python/library/site.html - [similar]
9.7. statistics --- 数理統計関数 — Python 3.6.5 ドキュメント 4946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .167, which is too high. StatisticsError is raised if data is empty, or any element is less than zero. バ ... ata, using the common "mean of middle two" method. If data is empty, StatisticsError is raised. data can ... ( data ) ¶ Return the low median of numeric data. If data is empty, StatisticsError is raised. data can ... an_high ( data ) ¶ Return the high median of data. If data is empty, StatisticsError is raised. data can ...
https://man.plustar.jp/python/library/statistics.html - [similar]
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 4905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... y , & value )) { long i = PyLong_AsLong ( value ); if ( i == -1 && PyErr_Occurred ()) { return -1 ; } Py ... Object * o = PyLong_FromLong ( i + 1 ); if ( o == NULL ) return -1 ; if ( PyDict_SetItem ( se ... a , seq2 , override ) : for key , value in seq2 : if override or key not in a : a [ key ] = value int P ...
https://man.plustar.jp/python/c-api/dict.html - [similar]
29.4. __main__ --- トップレベルのスクリプト環境 — Python 3.6.5 ドキュメント 4905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コードの条件として使用できる一般的なイディオムです: if __name__ == "__main__" : # execute only if run as ...
https://man.plustar.jp/python/library/__main__.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 4905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on unpickling. __getnewargs__() will not be called if __getnewargs_ex__() is defined. バージョン 3.6 で変 ... regular class instance, we emit a # persistent ID. if isinstance ( obj , MemoRecord ): # Here, our persi ... ontaining a tag and a # key, which refers to a specific record in the database. return ( "MemoRecord" , ... obj . key ) else : # If obj does not have a persistent ID, return None. Th ...
https://man.plustar.jp/python/library/pickle.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 4905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... e type. They can be indexed and sliced, but not modified in place. Unicode strings have an encode( [enco ... at are then available throughout a Python program. If an encoding isn't specified, the default encoding ... 包表記はこれを明快にします: sublist = [ s for s in L if string . find ( s , S ) != - 1 ] リスト内包表記は以 ... for expr2 in sequence2 ... for exprN in sequenceN if condition ] for ... in 節はイテレートするシーケンス ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
イテレータプロトコル (iterator protocol) — Python 3.6.5 ドキュメント 4874
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ator = PyObject_GetIter ( obj ); PyObject * item ; if ( iterator == NULL ) { /* propagate error */ } whi ... e */ Py_DECREF ( item ); } Py_DECREF ( iterator ); if ( PyErr_Occurred ()) { /* propagate error */ } els ...
https://man.plustar.jp/python/c-api/iter.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT