Python repr() 函数

Python 教程 · 2019-02-01 16:58:45

描述

repr() 函数将对象转化为供解释器读取的形式。

语法

以下是 repr() 方法的语法:

repr(object)

参数

  • object -- 对象。

返回值

返回一个对象的 string 格式。

实例

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

>>>s = 'CODERCTO' >>> repr(s) "'CODERCTO'" >>> dict = {'codercto': 'codercto.com', 'google': 'google.com'}; >>> repr(dict) "{'google': 'google.com', 'codercto': 'codercto.com'}" >>>

点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html

查看所有标签

Stylin' with CSS

Stylin' with CSS

Wyke-Smith, Charles / 2012-10 / $ 50.84

In this completely revised edition of his bestselling Stylin' with CSS, veteran designer and programmer Charles Wyke-Smith guides you through a comprehensive overview of designing Web pages with CSS, ......一起来看看 《Stylin' with CSS》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

在线进制转换器
在线进制转换器

各进制数互转换器

SHA 加密
SHA 加密

SHA 加密工具