PHP前端开发

举例说明python中空格是属于字符

百变鹏仔 1个月前 (01-23) #Python
文章标签 空格

python中空格属于字符吗?

答案是肯定的,空格在Python中也是属于字符的。

案例:

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

立即学习“Python免费学习笔记(深入)”;

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

判断字符属于数字、字母、空格的方法:

字符 c.isalpha()

空格 c.isspace()

数字 c.isdigit()