foriinstrs:#遍历字符串
ifi.isdigit():#判断是否为数字
int_count+=1
elifi.isalnum():#判断是否为字母
str_count+=1
elifi.isspace():#判断是否为空格
spa_count+=1
else:
other_count+=1
print(“字符串s中,数字个数={},字母个数={},空格个数={},其他个数={}”.format(int_count,str_count,spa_count,other_count))
if__name__==”__main__”:
strs=input(“请输入字符串s:”)
count_str(strs)