| 
 | 
 
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册  
 
x
 
def count(*param):  #这个函数里面的参数什么意思,大佬给详细解释一下吧  万分感谢!!! 
    length = len(param) 
    for i in range(length): 
        letters = 0 
        space = 0 
        digit = 0 
        others = 0 
        for each in param[i]: 
            if each.isalpha(): 
                letters += 1 
            elif each.isdigit(): 
                digit += 1 
            elif each == ' ': 
                space += 1 
            else: 
                others += 1 
        print('第 %d 个字符串共有:英文字母 %d 个,数字 %d 个,空格 %d 个,其他字符 %d 个。' % (i+1, letters, digit, space, others)) 
             
count('I love fishc.com.', 'I love you, you love me.') 
param:参数 
*param表示收集参数,将在函数调用过程中未使用关键字参数赋值的参数默认收集起来 
 
 
 
 |   
 
 
 
 |