IWonderWhy

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
# 让字符串按照愿意输出
print(repr("hello\nworld"))
print("hello\\nworld")
print(r"hello\nworld")

结果

'hello\nworld'
hello\nworld
hello\nworld

 

posted on 2019-04-20 13:04  IWonderWhy  阅读(153)  评论(0编辑  收藏  举报