Python 中的单引号与双引号
Python 文档允许在字符串文字中互换使用单引号和双引号。但是,两者之间可能会出现风格偏好。
风格指南
例外:
其他注意事项
示例:
考虑以下内容代码:
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 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
在此示例中:
以上是在 Python 中什么时候应该使用单引号还是双引号?的详细内容。更多信息请关注PHP中文网其他相关文章!