首页 > 技术文章 > 原生字符串

lsswudi 2019-07-15 22:58 原文

# coding:utf-8

# temp = "hello\\world"
# print temp


# 原生字符串:raw   所见即所得
# raw_input
# input
# temp = r"hello\n\tworld"
# print (temp)

 

推荐阅读