python怎么統(tǒng)計(jì)總字符個(gè)數(shù)

小億
159
2024-05-14 10:46:00

在 Python 中,要統(tǒng)計(jì)字符串中的總字符個(gè)數(shù),您可以使用 `len()` 函數(shù)

```python

text = "Hello, World!"

total_characters = len(text)

print("Total characters:", total_characters)

```

在這個(gè)示例中,`len(text)` 返回字符串 `text` 中的字符個(gè)數(shù),包括空格和標(biāo)點(diǎn)符號(hào)。`print()` 函數(shù)輸出總字符個(gè)數(shù)。

如果您想要統(tǒng)計(jì)字符串中的字母?jìng)€(gè)數(shù)(不包括空格和標(biāo)點(diǎn)符號(hào)),可以使用以下代碼:

```python

text = "Hello, World!"

total_letters = sum(c.isalpha() for c in text)

print("Total letters:", total_letters)

```

在這個(gè)示例中,`c.isalpha()` 函數(shù)檢查字符 `c` 是否為字母。`sum()` 函數(shù)計(jì)算 `text` 中所有字母的總數(shù)。`print()` 函數(shù)輸出總字母?jìng)€(gè)數(shù)。

0