如何在Python中使用双引号?
引号符号在Python中用于创建字符串对象。Python认识单引号,双引号和三引号的字符串。将一系列字符包含在单引号内(’hello’),或者双引号内(”hello”)可以写入字符串文本。
>>> var1='hello'
>>> var1
'hello'
>>> var2="hello"
>>> var2
'hello'
如果要嵌入单引号文本,字符串应该用双引号书写。
>>> var="Welcome to 'Python Tutorial' from TutorialsPoint"
>>> var
"Welcome to 'Python Tutorial' from TutorialsPoint"
更多Python相关文章,请阅读:Python 教程