Python中的单引号与双引号

Python中的单引号与双引号

根据文档,它们基本上是可以互换的。是否有一个风格上的理由来使用一个而另一个呢?



holdtom
浏览 1130回答 3
3回答

largeQ

我喜欢在用于插值或自然语言消息的字符串周围使用双引号,对于类似符号的小字符串使用单引号,但是如果字符串包含引号,或者如果我忘记了,则会违反规则。我对docstring使用三重双引号,对于正则表达式使用原始字符串文本,即使不需要它们。例如:LIGHT_MESSAGES = {     'English': "There are %(number_of_lights)s lights.",     'Pirate':  "Arr! Thar be %(number_of_lights)s lights."}def lights_message(language, number_of_lights):     """Return a language-appropriate string reporting the light count."""     return LIGHT_MESSAGES[language] % locals()def is_pirate(message):     """Return True if the given message sounds piratical."""     return re.search(r"(?i)(arr|avast|yohoho)!", message) is not None

胡子哥哥

我以前更喜欢',特别是为了'''docstrings''',我发现"""this creates some fluff"""..还有,'可以不使用换档我的瑞士德国键盘上的键。从那以后,我改变了使用三重引号作为"""docstrings""",符合Pep 257.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python