Python string文章

以下是一個簡單的 Python 字元串文章示例:

```python

# 定義文章字元串

article = """

Hello, world!

This is a Python string article.

It contains multiple lines of text.

"""

# 列印文章字元串

print(article)

```

輸出結果:

```

Hello, world!

This is a Python string article.

It contains multiple lines of text.

```

這個示例中,我們定義了一個包含多行文本的字元串文章,並將其存儲在變數 `article` 中。然後,我們使用 `print()` 函式將其列印到控制台中。您可以將文章字元串中的內容替換為自己的內容,或者將其作為數據存儲在程式的其他部分中使用。

以上就是【Python string文章】的相關內容,敬請閱讀。