repr() 函数

以下展示了使用 repr() 方法的实例:

>>>s = 'RUNOOB'
>>> repr(s)
"'RUNOOB'"
>>> dict = {'runoob': 'runoob.com', 'google': 'google.com'};
>>> repr(dict)
"{'google': 'google.com', 'runoob': 'runoob.com'}"
>>>
返回一个对象的 string 格式

你可能感兴趣的:(repr() 函数)