在python中使用双引号和引号之间的区别

时间:2009-03-10 01:52:30

标签: python

在Python中使用双引号与单引号之间有什么区别吗?

"A string with double quotes"
'A string with single quotes'

它们相同吗? python如何解释这些字符串有什么不同吗?

3 个答案:

答案 0 :(得分:23)

简短回答:除了风格上几乎没有差异。
Short blurb:如果您不想转义字符串中的引号字符,请使用其他类型。例如:

string1 = "He turned to me and said, \"Hello there\""

会比说

更难看
string2 = 'He turned to me and said, "Hello there"'

同样适用于单引号/撇号。

答案 1 :(得分:4)

一般情况下,您只需要在给定的声明中保持一致。例如,不要做“foo”

如需进一步阅读,请参阅here

答案 2 :(得分:1)

双引号看起来与众不同。单引号看起来像单个刻度。除此之外......