课程
/后端开发
/Python
/Python3 入门教程(新版)
为什么这样也显示运行成功
2020-10-14
源自:Python3 入门教程(新版) 3-5
正在回答
\表示转义字符,\后面紧接的1个字符表示普通的一个符号,不再是python中特殊字符了
\后面代表的是普通符号,在python语言中将完整的打印出来
举报
python3入门教程,让你快速入门并能编写简单的Python程序
1 回答print("special string: \', \", \\, \\\\, \\n,\\t")
1 回答print('special string:\',", \\, \\\, \\n, \\t')
2 回答s = 'special string: \', ", \\, \\\\, \\n, \\t'
1 回答>>>s = 'special string: \', ", \\, \\\\, \\n, \\t' >>>s 'special string: \', ", \\, \\\\, \\n, \\t'
2 回答print('special string: \',\",\,\\\,\\n,\\t,') 这个编译对不,运行怎么都是对的,我都不知道标准答案了