字符串文字,在函数定义中带有三引号

时间:2012-05-31 19:52:52

标签: python string literals

我正在关注Python教程,并且在某些时候他们讨论了函数的第一个语句如何是String Literal。就例子而言,这个String Literal似乎是用三个"来完成的,在example

中给出
"""Print a Fibonacci series up to n."""

根据此文档,这将主要用于创建某种自动生成的文档。

所以我想知道这里是否有人可以向我解释这些字符串文字究竟是什么?

6 个答案:

答案 0 :(得分:58)

你所说的(我认为)被称为docstrings(感谢Boud的链接)。

def foo():
    """This function does absolutely nothing"""

现在,如果您从解释器中键入help(foo),您将看到我在函数中放入的字符串。您还可以通过foo.__doc__

访问该字符串

当然,字符串文字就是 - 文字字符串。

a = "This is a string literal"  #the string on the right side is a string literal, "a" is a string variable.

foo("I'm passing this string literal to a function")

可以通过多种方式定义它们:

'single quotes'
"double quotes"
""" triple-double quotes """  #This can contain line breaks!

甚至

#This can contain line breaks too!  See?
''' triple-single 
    quotes '''

答案 1 :(得分:31)

嗯,看看表达式,文字和字符串的概念会很有帮助。

字符串,表达式和文字

在程序中,我们必须表示各种类型的数据。一个类型的数据是整数;其他类型是浮点数。

某种类型的值可以通过各种方式产生,即通过各种表达式表达式是程序的任何片段,它可以创建"一个值。例如,下面的Python表达式产生值4并将其放在变量中。该值由表达式 2+2

产生
i = 2+2

鉴于上面的陈述,下面的表达式产生相同的值4,但现在这个表达式只包含变量

i

下面,我通过算术表达式生成一个值,并通过变量(也是一个表达式)检索它。

但是,语言应提供直接生成基本值的语法。例如,上面表达式中的2检索值2.直接生成基本值的表达式称为 literals 。表达式2+24都生成相同的值4,但第二个表达式直接生成它,因此它是一个文字。

字符串文字和多行字符串

一种非常重要的数据类型是文本,一系列字母,数字和其他字符。此类型通常称为 string

以这种方式,字符串文字是一个产生字符串的文字。在Python中,这些文字以多种方式标记(即,字符串文字有许多语法)。例如,您可以在文字的开头或结尾放置单引号或双引号:

"A string literal"

'Another string literal'

其他方式是将三个单引号或双引号放在相同的位置。在这种情况下,文字可以跨越多行:

"""A single line string literal"""

"""A multiline
string literal"""

'''Another multiline
string literal'''

请注意,无论您选择哪种语法字符串文字,它都不会更改其值。单引号字符串等于具有相同字符的双引号字符串,并且三引号字符串等于具有相同内容的单引号字符串:

>>> "A single line string literal" == 'A single line string literal'
True

>>> """A single line string literal""" == "A single line string literal"
True

>>> # \n is the character that represents a new line
>>> "A multiline\nstring literal" == """A multiline
string literal""" 
True

Docstrings以及为什么它们应该是字符串文字

文档说的是你可以在方法声明之后放置一个字符串文字,这个文字将用作文档 - 我们用来调用 docstring 。如果你使用单引号或双引号字符串,或者一个或三个引用字符串也没关系:它只需要是一个文字

考虑以下功能:

def f1(value):
    "Doc for f1"
    return value + 1

def f2(value):
    """Doc for f2"""
    return value + 2

现在,在python控制台中声明它们并调用help(f1)help(f2)。请注意,字符串文字的语法无关紧要。

OTOH,您不能使用其他表达式(如变量或字符串操作)来生成文档。因此下面函数第一行的字符串不是docstring

mydoc = "This is doc"
def f3(value):
     mydoc
     return value+3

 def f4(value):
     "This is no documentation " + "because it is concatenated"
     return value+4

它应该是文字,因为编译器是明确编写的来管理它作为文档。但是,编译器不准备将变量,复杂表达式等作为文档进行管理,因此它将忽略它们。换句话说,它是设计的。

为什么使用三重引号字符串作为文档字符串?

虽然可以在文档字符串中使用任何形式的字符串文字,但您可以认为文档通常包含非常长的文本,包含多行和多段。好吧,因为它包含很多行,最好使用接受多行的文字形式,对吧?这就是为什么三引号字符串是编写文档字符串的首选(但不是强制)方式的原因。

边注

实际上,您可以将字符串文字放在Python函数的任何位置:

 def flying_literals(param):
    "Oh, see, a string literal!"
    param += 2
    "Oh, see, ANOTHER string literal!"
    return param
    "the above literal is irrelevant, but this one can be still MORE IRRELEVANT"

但是,只有第一行的文字有所不同(作为文档)。其他的就像无操作。

答案 2 :(得分:7)

字符串文字只是源代码中字面上给出的字符串。无论是docstring还是其他字符串都没关系。有关所有详细信息,请参阅Python language documentation section on string literals,但您现在可能不需要这些详细信息。

一些例子:

"abc"
'Guido'
r"""Norwegian Blue"""

答案 3 :(得分:7)

字符串文字是许多引用选项之一中的字符串,未分配给变量。

所以,

"String" # string literal
'string' # string literal
"""
  Multiline
  String
  Literal
"""
foo = "string variable"

如果在def块之后立即有字符串文字,它将成为该方法文档的一部分,并称为 docstring

def foo(hello):
    """This is part of the documentation for foo"""

这就是你如何使用它:

>>> def foo(hello):
...     """This is the docstring"""
...     pass
... 
>>> foo.__doc__
'This is the docstring'

答案 4 :(得分:4)

在python中,有几种方法可以将字符串分成多行。字符串文字就是其中之一,例如:

s = """Hello, 
    world"""
print(s)
>>> Hello, 
>>>     world #Notice, that spaces used in the literal are kept. 

但正如您所注意到的那样,字符串文字通常用于内联文档

class MyClass(object):
    """This is my class it does this and that.

       It has some cool features and I may tell you about them below.
    """

    def my_method(self):
        """This is a brief description of my method."""

    def important_method(self):
        """Because this method is important, I'm going to tell you 
           a lot about it. For example...
        """

在你问之前,在多行上分割字符串的好方法是神圣的Python括号:

s = ('This is a very very long string. '
     'I have to split it to multiple lines. '
     'Whoa! It works!')   
print(s)
>>> This is a very very long string. I have to split it to multiple lines. Whoa! It works!

您可能需要遵循PEP-8,其中规定“每行不得超过80个字符”。

快乐的Python黑客攻击!

答案 5 :(得分:1)

它们就像任何其他字符串一样,在它们周围有'"'''"""对。
推荐的形式是三重双引号:

def some_function(s):
    """this is documentation for some_function"""
    print(s)