首页 > 编程语言 > 详细

Python - repr()、str() 的区别

时间:2021-09-12 10:49:22      阅读:31      评论:0      收藏:0      [点我收藏+]

总的来说

  • str():将传入的值转换为适合人阅读的字符串形式
  • repr():将传入的值转换为 Python 解释器可读取的字符串形式

 

传入整型

# number
resp = str(1)
print(resp, type(resp), len(resp))
resp = str(1.1)
print(resp, type(resp), len(resp))

resp = repr(1)
print(resp, type(resp), len(resp))
resp = repr(1.1)
print(resp, type(resp), len(resp))


# 输出结果
1 <class str> 1
1.1 <class str> 3
1 <class str> 1
1.1 <class str> 3

 

传入字符串

# string
resp = str("test")
print(resp, type(resp), len(resp))

resp = repr("test")
print(resp, type(resp), len(resp))


# 输出结果
test <class str> 4
test <class str> 6

repr() 会在原来的字符串上面加单引号,所以字符串长度会 +2

 

Python - repr()、str() 的区别

原文:https://www.cnblogs.com/poloyy/p/15253032.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!