# 让字符串按照愿意输出 print(repr("hello world")) print("hello\nworld") print(r"hello world")
结果
'hello world' hello world hello world
# 让字符串按照愿意输出 print(repr("hello world")) print("hello\nworld") print(r"hello world")
结果
'hello world' hello world hello world