ActionScript:Python的“repr”的等效物(即,对象的有用字符串表示形式)?
原文:ActionScript: An equivalent of Python s `repr` (ie, a useful string representation of an object)?
原文:ActionScript: An equivalent of Python s `repr` (ie, a useful string representation of an object)?
Python 的 repr 函数非常棒:它返回一个对象的可打印表示。 例如,repr(["a b", {1: 2}, u"foo"]) 返回字符串 ["a b", {1: 2}, u foo ]。请注意,引号 ...