菜鸟教程 -- 学的不仅是技术,更是梦想!

Python 3 教程
Python3 教程 Python3 简介 Python3 环境搭建 Python3 VScode Python3 基础语法 Python3 基本数据类型 Python3 数据类型转换 Python3 解释器 Python3 注释 Python3 运算符 Python3 数字(Number) Python3 字符串 Python3 列表 Python3 元组 Python3 字典 Python3 集合 Python3 条件控制 Python3 循环语句 Python3 编程第一步 Python3 推导式 Python3 迭代器与生成器 Python3 with Python3 函数 Python3 lambda Python3 装饰器 Python3 数据结构 Python3 模块 Python __name__ Python3 输入和输出 Python3 File Python3 OS Python3 错误和异常 Python3 面向对象 Python3 命名空间/作用域 Python 虚拟环境的创建 Python 类型注解 Python3 标准库概览 Python3 实例 Python 测验

Python3 高级教程

Python3 正则表达式 Python3 CGI编程 Python3 MySQL(mysql-connector) Python3 MySQL(PyMySQL) Python3 网络编程 Python3 SMTP发送邮件 Python3 多线程 Python3 XML 解析 Python3 JSON Python3 日期和时间 Python3 内置函数 Python3 MongoDB Python3 urllib Python uWSGI 安装配置 Python3 pip Python3 operator Python math Python requests Python random Python OpenAI Python 有用的资源 Python AI 绘画 Python statistics Python hashlib Python 量化 Python pyecharts Python selenium 库 Python 爬虫 Python Scrapy 库 Python Markdown Python sys 模块 Python Pickle 模块 Python subprocess 模块 Python queue 模块 Python StringIO 模块 Python logging 模块 Python datetime 模块 Python re 模块 Python csv 模块 Python threading 模块 Python asyncio 模块 Python PyQt Python for 循环 Python while 循环
(追記) (追記ここまで)

Python repr() 函数

Python3 内置函数 Python3 内置函数


repr() 是 Python 中用于获取对象可打印表示的内置函数。

repr() 返回一个对象的官方字符串表示,通常可以用来重新创建该对象。它与 str() 的区别在于,repr() 更侧重于调试和开发,而 str() 侧重于用户友好。

单词释义: reprrepresentation(表示)的缩写。


基本语法与参数

语法格式

repr(object)

参数说明

  • 参数 object:
    • 类型: 任意对象
    • 描述: 要获取其字符串表示的对象。

函数说明

  • 返回值: 返回一个字符串,通常是可以表示该对象的字符串。
  • 特殊方法: 对象可以通过定义 __repr__ 方法自定义返回值。

实例

示例 1:repr() vs str()

实例

# 字符串的区别
s = "hello"
print(f"str: '{str(s)}'") # 输出: str: 'hello'
print(f"repr: '{repr(s)}'") # 输出: repr: 'hello'

# 日期时间的区别
from datetime import datetime
dt = datetime.now()
print(f"str: {str(dt)}")
print(f"repr: {repr(dt)}")

# 自定义类的区别
class Person:
def __init__(self, name):
self.name = name
def __str__(self):
return f"Person: {self.name}"
def __repr__(self):
return f"Person(name='{self.name}')"

p = Person("Tom")
print(f"str: {str(p)}")
print(f"repr: {repr(p)}")

运行结果预期:

str: 'hello'
repr: 'hello'
str: 2024年01月15日 10:30:45.123456
repr: datetime.datetime(2024, 1, 15, 10, 30, 45, 123456)
str: Person: Tom
repr: Person(name='Tom')

代码解析:

  1. 对于简单字符串,两者结果相同。
  2. 对于日期时间,repr() 返回可以重建对象的表达式。
  3. 自定义类可以分别定义 __str____repr__ 方法。

示例 2:使用 repr() 调试

实例

# 显示隐藏字符
s = "hello\nworld"
print(f"str: {str(s)}")
print(f"repr: {repr(s)}")

# 显示引号
text = "She said 'hello'"
print(f"str: {str(text)}")
print(f"repr: {repr(text)}")

# 在交互式环境中
# 直接输入变量名会调用 repr()

运行结果预期:

str: hello
world
repr: 'hello\nworld'
str: She said 'hello'
repr: "She said 'hello'"

repr() 可以显示隐藏字符(如换行符)和引号,方便调试。


Python3 内置函数 Python3 内置函数


AI 思考中...

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /