2019-03-20
阅读量:
532
python str 与 repr 用法是啥?
python str 与 repr 用法是啥?
答:python可以通过使用str 与 repr 这两种机制将值转换为字符串。
str 能将特殊编码转换为相应的字符
print(str'hello \nworld')
输出:
hello
world
repr 能将值转换为合法python表达式
print(repr'hello \nworld')
输出:'hello \nworld'
15.5046
2
1
关注作者
收藏
评论(0)
发表评论
暂无数据