舉例說明python中空格是屬於字符

anonymity
發布: 2019-06-14 09:54:57
原創
7920 人瀏覽過

python中空格屬於字元嗎?

答案是肯定的,空格在Python中也是屬於字元的。

舉例說明python中空格是屬於字符

案例:

#輸入一行字符,分別統計其中英文字母、空格、數字和其它字符的個數。

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import string
s = raw_input('input a string:\n')
letters = 0
space = 0
digit = 0
others = 0
for c in s:
    if c.isalpha():
        letters += 1
    elif c.isspace():
        space += 1
    elif c.isdigit():
        digit += 1
    else:
        others += 1
print 'char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,othePython
登入後複製

判斷字元屬於數字、字母、空格的方法:

字元c.isalpha()

空格c.isspace()

數字c.isdigit()

以上是舉例說明python中空格是屬於字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!