给大家整理了相关的编程文章,网友禄成弘根据主题投稿了本篇教程内容,涉及到python、空格、字符、实例、python中空格是否属于字符相关内容,已被515网友关注,下面的电子资料对本篇知识点有更加详尽的解释。
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中空格是属于字符的详细内容,更多请关注码农之家其它相关文章!