您的位置:首页 > 编程语言 > Python开发

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

2021-09-10 20:58 567 查看

总的来说

  • 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

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: