我们如何在Python中使用双引号?

引号用于在Python中创建字符串对象。Python识别单引号,双引号和三引号字符串。字符串文字是通过将字符序列括在单引号('hello')或双引号(“ hello”)中来编写的

>>> var1='hello'
>>> var1
'hello'
>>> var2="hello"
>>> var2
'hello'

如果要嵌入单引号的文本,则字符串应用双引号引起来。

>>> var="Welcome to 'Python Tutorial' from nhooo"
>>> var
"Welcome to 'Python Tutorial' from nhooo"