课程
/后端开发
/Python
/Python3 入门教程(新版)
print('special string: \',\",\,\\\,\\n,\\t,') 这个编译对不,运行怎么都是对的,我都不知道标准答案了
2021-02-25
源自:Python3 入门教程(新版) 3-5
正在回答
a = 'special string: \',\",\\,\\\\,\\n,\\t'
print(a)
肚脐眼上的泥
对的。
举报
python3入门教程,让你快速入门并能编写简单的Python程序
1 回答print('special string:\',", \\, \\\, \\n, \\t')
1 回答print("special string: \', \", \\, \\\\, \\n,\\t")
2 回答print('special string: \',\",\,\\\,\\n,\\t.')
2 回答s = 'special string: \', ", \\, \\\\, \\n, \\t'
1 回答>>>s = 'special string: \', ", \\, \\\\, \\n, \\t' >>>s 'special string: \', ", \\, \\\\, \\n, \\t'