在Python 中的字串中包含引號
在Python 中,當列印需要引號的字串時,了解如何轉義是至關重要的或在字串中容納這些標記。
轉義引號(方法1)
要轉義字串中的雙引號,請在引號前使用反斜線 ()。例如:
print("This is a \"quoted\" string.") # Output: This is a "quoted" string.
使用不同的引號類型(方法 2)
另一個選項是同時使用單引號和雙引號。例如:
print('"A word that needs quotation marks"') # Output: "A word that needs quotation marks"
使用三引號字串(方法3)
最後,您可以使用三引號字串,它允許您跨越多行無需手動轉義引號。例如:
print('''"A word that needs quotation marks"''') # Output: "A word that needs quotation marks"
以上是如何在 Python 字串中包含引號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!