ICJJ 发表于 2021-11-23 10:42:33

三引号之间的问题

本帖最后由 ICJJ 于 2021-11-23 10:44 编辑

这种三引号之中的内容是什么意思呢?
是运行>>>之后的内容吗?
这个部分也不是很懂。
def as_list(self, key):
      """
      A convenience method which fetches the specified value, guaranteeing
      that it is a list.

      >>> a = ConfigObj()
      >>> a['a'] = 1
      >>> a.as_list('a')
      
      >>> a['a'] = (1,)
      >>> a.as_list('a')
      
      >>> a['a'] =
      >>> a.as_list('a')
      
      """
      result = self

lightninng 发表于 2021-11-23 11:19:40

遇到问题请先百度~~~

jackz007 发表于 2021-11-23 11:35:36

       本例中三引号之间的文本属于注释内容,用来说明函数的功能和用法,像这种说明性质三引号之间的内容不会被当成脚本来执行。

ICJJ 发表于 2021-11-24 13:14:32

那6-15行为什么是这种格式,而且高亮明显与上面的文字不同。

suchocolate 发表于 2021-11-26 13:27:40

ICJJ 发表于 2021-11-24 13:14
那6-15行为什么是这种格式,而且高亮明显与上面的文字不同。

那是代码编辑器自带的效果。
基础打捞,事半功倍。https://www.runoob.com/python3/python3-string.html
页: [1]
查看完整版本: 三引号之间的问题