Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 66 for Repr (0.024 sec.)
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... add a new entry to the left side >>> d # show the representation of the deque deque(['f', 'g', 'h', 'i', ... 内容を name=value という形のリストで返す使いやすい __repr__() も持っています。 field_names は ['x', 'y'] のよ ... elds also accessible by name 33 >>> p # readable __repr__ with a name=value style Point(x=11, y=22) 名前付 ... rs the order elements are first encountered' def __repr__ ( self ): return ' %s ( %r )' % ( self . __class ...
https://man.plustar.jp/python/library/collections.html - [similar]
14.3. netrc --- netrc ファイルの処理 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lt エントリもない場合、 None を返します。 netrc. __repr__ ( ) ¶ クラスの持っているデータを netrc ファイルの ...
https://man.plustar.jp/python/library/netrc.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... の前に変換されます。変換 '!s' は str() を、 '!r' は repr() を、そして '!a' は ascii() を呼び出します。 その ... his name is 'Fred'." >>> f "He said his name is { repr ( name ) } ." # repr() is equivalent to !r "He sai ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... に使う際には、コマンドの出力結果表示にはビルトインの repr() 関数が使われます。Python 2.1 ではこの repr() の代 ... らより弱い最終版がチェックインされました。 文字列に repr() を適用するとこれまでは表示出来ない文字について、 ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... して print を作ったのが間違いでした。 p はその引数の repr を表示するのであって、Python 2 での print コマンド ... ew Barnett in bpo-16203 .) 正規表現オブジェクト の repr にパターンとフラグを含めるようになりました。 match ... オブジェクト の repr に start、end と合致した部分文字列を含むようになり ... ければなりません; そして importlib.abc.Loader.module_repr() , importlib.util.module_for_loader() , importlib ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6806
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... に対して %b は使えませんが、 %a であれば使えます ( repr(obj).encode('ascii', 'backslashreplace') と同等): ... not lines that start with "From " in email bodies are prefixed with a ">" character by generators. The def ... () class method can be used to get a Path instance representing the user's home directory. (Contributed by ... ket are not necessary or are suboptimal. SSLObject represents an SSL protocol instance, but does not imple ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... らず、無視されます。 'r' フォーマットコードは標準の repr() フォーマットを指定しています。 flags は 0 か、 P ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
Set オブジェクト — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ect_RichCompareBool() , PyObject_Hash() , PyObject_Repr() , PyObject_IsTrue() , PyObject_Print() , PyObjec ...
https://man.plustar.jp/python/c-api/set.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dule() の他のすべての責任を肩代わりします。 module_repr ( module ) ¶ 実装されていた場合、与えられたモジュー ... ルの repr を計算して文字列として返すためのレガシーなメソッド ... です。モジュール型のデフォルトの repr() は、必要に応じてこのメソッドの結果を使います。 バ ...
https://man.plustar.jp/python/library/importlib.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... executable', 'exit', 'flags', 'float_info', 'float_repr_style', 'getcheckinterval', 'getdefaultencoding', ... rd', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT