发布网友 发布时间:2022-04-06 05:27
共8个回答
热心网友 时间:2022-04-06 06:57
wz="计量单位是指根据约定定义和采用的标量,任何其他同类量可与其比较使两个量之比用一个数表示。计量单位具有根据约定赋予的名称和符号。"热心网友 时间:2022-04-06 08:15
追问能简单点吗,我刚开始学python,看不懂
追答# coding: utf-8
import string
def chartype(ch):
"""字符类型判断"""
if ch in string.ascii_letters: return 'ascii_letters'
elif ch in string.digits: return 'digits'
elif ch in string.whitespace: return 'whitespace'
else: return 'other'
def chtypecount(s):
"""字符串类型计数器"""
counter = {}
for ct in map(chartype, s):
counter.setdefault(ct, 0)
counter[ct] += 1
return counter
for chtype, cnts in chtypecount(raw_input("Enter a string: ")).items():
print chtype, cnts
热心网友 时间:2022-04-06 09:49
python中有些内置函数很逆天的。热心网友 时间:2022-04-06 11:41
有内置函数的热心网友 时间:2022-04-06 13:49
判断ascii码应该就可以了、、热心网友 时间:2022-04-06 16:13
要用len追答基本没有关系~~
热心网友 时间:2022-04-06 18:55
有个count函数,可以分别计数啊追答支持,Counter()函数回复 zhangxuhbwa :我是python初学者,求加好友805366180
热心网友 时间:2022-04-06 21:53
你好: