Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 234 for IF (0.106 sec.)
34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 5386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ORed combination of the constants described below. If the sound parameter is None , any currently playin ... g waveform sound is stopped. If the system indicates an error, RuntimeError is rai ... n from the Platform API. This plays a sound as specified in the registry. The type argument specifies wh ... oduces a "simple beep"; this is the final fallback if a sound cannot be played otherwise. If the system ...
https://man.plustar.jp/python/library/winsound.html - [similar]
9.1. numbers --- 数の抽象基底クラス — Python 3.6.5 ドキュメント 5345
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を以下のように実装しています: def __hash__ ( self ): if self . denominator == 1 : # Get integers right. re ... rator ) # Expensive check, but definitely correct. if self == float ( self ): return hash ( float ( self ... tegral ( Integral ): def __add__ ( self , other ): if isinstance ( other , MyIntegral ): return do_my_ad ... ding_stuff ( self , other ) elif isinstance ( other , OtherTypeIKnowAbout ): return ...
https://man.plustar.jp/python/library/numbers.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 5304
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... =False , strict_domain=False , strict_rfc2965_unverifiable=True , strict_ns_unverifiable=False , strict_ ... treated according to the RFC 2965 rules. However, if RFC 2965 handling is turned off or rfc2109_as_nets ... jar construct their own Cookie instances. Instead, if necessary, call make_cookies() on a CookieJar inst ... ds get_full_url() , get_host() , get_type() , unverifiable() , has_header() , get_header() , header_item ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5304
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... された行から先頭の # あるいは ## を取り除きます。 Tabify Region [領域のタブ化] 先頭 の一続きの空白をタブに ... ントには 4 つの空白を使うことをお勧めします)。 Untabify Region [領域の非タブ化] すべての タブを適切な数の ... す。この機能は、コマンドラインからファイルを python -i file で実行することに相当します。 25.5.1.5. Shell メ ... ding indentation, Backspace deletes up to 4 spaces if they are there. Tab inserts spaces (in the Python ...
https://man.plustar.jp/python/library/idle.html - [similar]
バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 5263
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ことによってバッファの妥当性を確認出来ます。 def verify_structure ( memlen , itemsize , ndim , shape , st ... rides , offset ): """Verify that the parameters represent a valid array withi ... hysical memory block offset: (char *)buf - mem """ if offset % itemsize : return False if offset < 0 or ... offset + itemsize > memlen : return False if any ( v % itemsize for v in strides ): return Fals ...
https://man.plustar.jp/python/c-api/buffer.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 5263
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... alue exactly equal to x' i = bisect_left ( a , x ) if i != len ( a ) and a [ i ] == x : return i raise V ... tmost value less than x' i = bisect_left ( a , x ) if i : return a [ i - 1 ] raise ValueError def find_l ... ess than or equal to x' i = bisect_right ( a , x ) if i : return a [ i - 1 ] raise ValueError def find_g ... t value greater than x' i = bisect_right ( a , x ) if i != len ( a ): return a [ i ] raise ValueError de ...
https://man.plustar.jp/python/library/bisect.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5263
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す: def all ( iterable ): for element in iterable : if not element : return False return True any ( itera ... す: def any ( iterable ): for element in iterable : if element : return True return False ascii ( object ... (see PEP 236 ) affect the compilation of source . If neither is present (or both are zero) the code is ... in effect in the code that is calling compile() . If the flags argument is given and dont_inherit is no ...
https://man.plustar.jp/python/library/functions.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 5263
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 6]) >>> It's also possible to take the symmetric difference of two sets. This is the set of all element ... . Another way of putting it is that the symmetric difference contains all elements that are in exactly o ... in-place version with the ungainly name symmetric_difference_update() . >>> S1 = sets . Set ([ 1 , 2 , 3 ... sets . Set ([ 3 , 4 , 5 , 6 ]) >>> S1 . symmetric_difference ( S2 ) Set([1, 2, 5, 6]) >>> S1 ^ S2 Set([1 ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 5222
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... ct.c" v = object . __getattribute__ ( self , key ) if hasattr ( v , '__get__' ): return v . __get__ ( No ... fget = fget self . fset = fset self . fdel = fdel if doc is None and fget is not None : doc = fget . __ ... = doc def __get__ ( self , obj , objtype = None ): if obj is None : return self if self . fget is None : ... . fget ( obj ) def __set__ ( self , obj , value ): if self . fset is None : raise AttributeError ( "can' ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 5222
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... する例: @lru_cache ( maxsize = None ) def fib ( n ): if n < 2 : return n return fib ( n - 1 ) + fib ( n - ... ther , "firstname" )) def __eq__ ( self , other ): if not self . _is_valid_operand ( other ): return Not ... irstname . lower ())) def __lt__ ( self , other ): if not self . _is_valid_operand ( other ): return Not ... ble , initializer = None ): it = iter ( iterable ) if initializer is None : value = next ( it ) else : v ...
https://man.plustar.jp/python/library/functools.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT