Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 66 for repr (0.031 sec.)
- 8.12. reprlib --- もう一つの repr() の実装 — Python 3.6.5 ドキュメント 17737
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 8. データ型 » 8.12. reprlib --- もう一つの repr() の実装 ¶ ソースコード: Li...
b/reprlib.py reprlib モジュールは、結果の文字列のサイズに...
クラスとインスタンス、それに関数を提供します: class reprlib. Repr ¶ 組み込み関数 repr() に似た関数を実装する...
めの大きさの制限をオブジェクト型ごとに設定できます。 reprlib. aRepr ¶ これは下で説明される repr() 関数を提供...
- https://man.plustar.jp/python/library/reprlib.html - [similar]
- 7. 入力と出力 — Python 3.6.5 ドキュメント 9518
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
ython には値を文字列に変換する方法があります。値を repr() か str() 関数に渡してください。 str() 関数は値の...
人間に読める表現を返すためのもので、 repr() 関数はインタープリタに読める (あるいは同値となる...
定の表現を持たないオブジェクトにおいては、 str() は repr() と同じ値を返します。数値や、リストや辞書を始めと...
'Hello, world.' >>> str ( s ) 'Hello, world.' >>> repr ( s ) "'Hello, world.'" >>> str ( 1 / 7 ) '0.14285...
- https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
- 3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 8476
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
tp_compare (Python 2) or tp_reserved (Python 3) */ reprfunc tp_repr ; /* Method suites for standard classe...
ility) */ hashfunc tp_hash ; ternaryfunc tp_call ; reprfunc tp_str ; getattrofunc tp_getattro ; setattrofu...
トの文字列表現を生成するのに 2つのやり方があります: repr() 関数を使う方法と、 str() 関数を使う方法です。 (...
出します。) これらのハンドラはどちらも省略できます。 reprfunc tp_repr ; reprfunc tp_str ; tp_repr ハンドラは...
- https://man.plustar.jp/python/extending/newtypes.html - [similar]
- 5. インポートシステム — Python 3.6.5 ドキュメント 8405
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
適切な __path__ をセットします。 5.4.6. モジュールの repr ¶ デフォルトでは、すべてのモジュールは利用可能な r...
おり、モジュール仕様によってモジュールオブジェクトの repr をより明示的に制御することができます。 もしモジュー...
_spec__ ) を持っていれば、インポート機構はそこから repr を生成しようとします。もしそれが失敗するか、または...
ジュールで入手可能なあらゆる情報を使ってデフォルトの repr を構築します。それは module.__name__ , module.__fi...
- https://man.plustar.jp/python/reference/import.html - [similar]
- 29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 8062
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
iables in each FrameSummary are captured as object representations. classmethod from_list ( a_list ) ¶ Con...
e , lookup_line=True , locals=None , line=None ) ¶ Represent a single frame in the traceback or stack that...
variable dictionary, and if supplied the variable representations are stored in the summary for later dis...
exc_type below is ignored on 3.5 and later print ( repr ( traceback . format_exception ( exc_type , exc_va...
- https://man.plustar.jp/python/library/traceback.html - [similar]
- オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 7919
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
ンは Py_PRINT_RAW です; このオプションを指定すると、 repr() の代わりに str() を使ってオブジェクトを書き込みま...
NE に対して常に 0 を返します。 PyObject * PyObject_Repr ( PyObject *o ) ¶ Return value: New reference. オブ...
列表現を返し、失敗すると NULL を返します。 Python 式 repr(o) と同じです。この関数は組み込み関数 repr() の処理...
Object * PyObject_ASCII ( PyObject *o ) ¶ PyObject_Repr() と同様、オブジェクト o の文字列表現を計算しますが...
- https://man.plustar.jp/python/c-api/object.html - [similar]
- 8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 7848
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
nt ( Color . RED ) Color.RED ...その一方でそれらの repr はより多くの情報を持っています: >>> print ( repr (...
よび %r はそれぞれ Enum クラスの __str__() および __repr__() を呼び出します; その他のコード (IntEnum の %i...
__format__() が使われます。 Enum クラスの str() や repr() を使って欲しいときは、フォーマットのコードで !s...
示せます。 どの方法を選んでも、(重要でない) 値を隠す repr() を提供すべきです: >>> class NoValue ( Enum ): .....
- https://man.plustar.jp/python/library/enum.html - [similar]
- 例外処理 — Python 3.6.5 ドキュメント 7634
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
obj で関数が呼び出されます。 可能な場合は、 obj の repr 文字列が警告メッセージに出力されます。 例外の送出...
し 1 回呼ばなければなりません。 コンテナ型に対し tp_repr を適切に実装するには、特殊な再帰の処理が求められま...
す。スタックの防護に加え、 tp_repr は循環処理を避けるためにオブジェクトを辿っていく必...
の関数はその機能を容易にします。実質的には、これらは reprlib.recursive_repr() と同等な C の実装です。 int Py...
- https://man.plustar.jp/python/c-api/exceptions.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7634
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
. displayhook ( value ) ¶ value が None 以外の時、 repr(value) を sys.stdout に出力し、 builtins._ に保存し...
ます。 repr(value) がエラーハンドラを sys.stdout.errors (おそら...
None to avoid recursion builtins . _ = None text = repr ( value ) try : sys . stdout . write ( text ) exce...
ersion changes value '9876543211234568' sys. float_repr_style ¶ repr() 関数が浮動小数点数に対してどう振る舞...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 8. データ型 — Python 3.6.5 ドキュメント 7563
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
1. PrettyPrinter オブジェクト 8.11.2. 使用例 8.12. reprlib --- もう一つの repr() の実装 8.12.1. Reprオブジ...
ェクト 8.12.2. Reprオブジェクトをサブクラス化する 8.13. enum --- 列挙型...
- https://man.plustar.jp/python/library/datatypes.html - [similar]