Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 111 for self (0.116 sec.)
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sole ( code . InteractiveConsole ): def __init__ ( self , locals = None , filename = "<console>" , histfil ... istory" )): code . InteractiveConsole . __init__ ( self , locals , filename ) self . init_history ( histfi ... le ) def init_history ( self , histfile ): readline . parse_and_bind ( "tab: co ... xcept FileNotFoundError : pass atexit . register ( self . save_history , histfile ) def save_history ( sel ...
https://man.plustar.jp/python/library/readline.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 5917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... age -- explanation of the error """ def __init__ ( self , expression , message ): self . expression = expr ... ession self . message = message class TransitionError ( Error ... cific transition is not allowed """ def __init__ ( self , previous , next , message ): self . previous = p ... revious self . next = next self . message = message ほとんどの例 ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ass LowerCasedDict ( dict ): ... def __getitem__ ( self , key ): ... return dict . __getitem__ ( self , ke ... ss PlaceholderDict ( dict ): ... def __missing__ ( self , key ): ... return '< {} >' . format ( key ) >>> ... にしました: >>> class A : ... @property ... def f ( self ): ... return 1 // 0 ... >>> a = A () >>> hasattr ... います: @total_ordering class Student : def __eq__ ( self , other ): return (( self . lastname . lower (), s ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 5891
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ser ... maxDepth = 0 ... depth = 0 ... def start ( self , tag , attrib ): # Called for each opening tag. . ... .. self . depth += 1 ... if self . depth > self . maxDepth ... : ... self . maxDepth = self . depth ... def end ( self , tag ... ): # Called for each closing tag. ... self . depth -= 1 ... def data ( self , data ): ... pas ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
8.12. reprlib --- もう一つの repr() の実装 — Python 3.6.5 ドキュメント 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... list ): ... @recursive_repr () ... def __repr__ ( self ): ... return '<' + '|' . join ( map ( repr , self ... に値をフォーマットする必要がある型固有のメソッドは、 self.repr1(subobj, level - 1) を呼び出します。 8.12.2. ... yRepr ( reprlib . Repr ): def repr_TextIOWrapper ( self , obj , level ): if obj . name in { '<stdin>' , '< ...
https://man.plustar.jp/python/library/reprlib.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t ( xmlrpc . client . Transport ): def set_proxy ( self , host , port = None , headers = None ): self . pr ... oxy = host , port self . proxy_headers = headers def make_connection ( se ... ): connection = http . client . HTTPConnection ( * self . proxy ) connection . set_tunnel ( host , headers ... = self . proxy_headers ) self . _connection = host , conn ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 5828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ion 例外を送出するかもしれません。 conjugate ( ) ¶ self を返すだけです。このメソッドは十進演算仕様に適合す ... context=None ) ¶ 融合積和(fused multiply-add)です。self*other+third を途中結果の積 self*other で丸めを行わ ... 他的論理和です。 max ( other , context=None ) ¶ max(self, other) と同じですが、値を返す前に現在のコンテキス ... 値で行われます。 min ( other , context=None ) ¶ min(self, other) と同じですが、値を返す前に現在のコンテキス ...
https://man.plustar.jp/python/library/decimal.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 用済みです: ... class Application : def open_item ( self , path ): ... def init ( self ): open_func = funct ... ools . partial ( self . open_item , item_path ) popup_menu . append ( ( ... す。これはファイルオブジェクトの file.__enter__() が self を返しているからです。 threading モジュールのロック ... baseConnection : # Database interface def cursor ( self ): "Returns a cursor object and starts a new trans ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 5802
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yObject* 型であると定義していますが、固有の C 型を self オブジェクトに使う実装はよく行われています。 ml_fl ... 型の引数値を二つ要求します。最初の引数はメソッドの self オブジェクトです; モジュール関数の場合、これはモジ ... りません。 この関数は 3 つのパラメータを要求します: self 、 args 、およびキーワード引数全てからなる辞書です ... CFunction 型でなくてはなりません。第一のパラメタは self になり、モジュールかオブジェクトインスタンスへの参 ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 5764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... y part -5.0.' >>> class Point : ... def __init__ ( self , x , y ): ... self . x , self . y = x , y ... def ... __str__ ( self ): ... return 'Point( {self.x} , {self.y} )' . for ... mat ( self = self ) ... >>> str ( Point ( 4 , 2 )) 'Point(4, ...
https://man.plustar.jp/python/library/string.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT