鱼C论坛

 找回密码
 立即注册
查看: 1364|回复: 5

[已解决]关于代码的运行,为什么和参考答案不一致。

[复制链接]
发表于 2020-7-28 14:36:30 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这是我的代码:
def count(*strings):
    length = len(strings)
    for i in range(length):
        alpha = 0
        digit = 0
        space = 0
        other = 0
        for each in strings[i]:
            if each.isalpha() == True:
                alpha += 1
            elif each.isdigit == True:
                digit += 1
            elif each.isspace == True:
                space += 1
            else:
                other += 1
        print('第%d个字符串共有英文字母%d个,数字%d个,空格%d个,其他字符%d个' % (i+1,alpha, digit, space, other))


这是参考答案:
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.')



在实际运行中,我的代码没办法识别空格和数字,但是参考答案的可以,请问我的代码哪里出错了呢?
            
   
   
最佳答案
2020-7-28 14:38:08
本帖最后由 Twilight6 于 2020-7-28 14:40 编辑


你的 isdigit()、isspace() 都忘记加括号了,导致并没有执行函数,而只是代表 isspace 这个函数体

还有就是建议直接像参考答案那样,不用加上 == 号判断

因为字符串方法会返回 True 或者 False 直接作为 if 判断条件了哈~
def count(*strings):
    length = len(strings)
    for i in range(length):
        alpha = 0
        digit = 0
        space = 0
        other = 0
        for each in strings[i]:
            if each.isalpha() == True:
                alpha += 1
            elif each.isdigit() == True:
                digit += 1
            elif each.isspace() == True:
                space += 1
            else:
                other += 1
        print('第%d个字符串共有英文字母%d个,数字%d个,空格%d个,其他字符%d个' % (i+1,alpha, digit, space, other))
求助2.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-28 14:38:08 | 显示全部楼层    本楼为最佳答案   
本帖最后由 Twilight6 于 2020-7-28 14:40 编辑


你的 isdigit()、isspace() 都忘记加括号了,导致并没有执行函数,而只是代表 isspace 这个函数体

还有就是建议直接像参考答案那样,不用加上 == 号判断

因为字符串方法会返回 True 或者 False 直接作为 if 判断条件了哈~
def count(*strings):
    length = len(strings)
    for i in range(length):
        alpha = 0
        digit = 0
        space = 0
        other = 0
        for each in strings[i]:
            if each.isalpha() == True:
                alpha += 1
            elif each.isdigit() == True:
                digit += 1
            elif each.isspace() == True:
                space += 1
            else:
                other += 1
        print('第%d个字符串共有英文字母%d个,数字%d个,空格%d个,其他字符%d个' % (i+1,alpha, digit, space, other))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-28 14:39:39 | 显示全部楼层
def count(*strings):
    length = len(strings)
    for i in range(length):
        alpha = 0
        digit = 0
        space = 0
        other = 0
        for each in strings[i]:
            if each.isalpha() == True:
                alpha += 1
            elif each.isdigit() == True:
                digit += 1
            elif each.isspace() == True:
                space += 1
            else:
                other += 1
        print('第%d个字符串共有英文字母%d个,数字%d个,空格%d个,其他字符%d个' % (i+1,alpha, digit, space, other))
isspace和isdigit后面没加括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-28 14:48:53 | 显示全部楼层
Twilight6 发表于 2020-7-28 14:38
你的 isdigit()、isspace() 都忘记加括号了,导致并没有执行函数,而只是代表 isspace 这个函数体

还 ...

感谢专业解答~

点评

客气~  发表于 2020-7-28 14:49
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-28 14:49:26 | 显示全部楼层
1q23w31 发表于 2020-7-28 14:39
isspace和isdigit后面没加括号

感谢解答!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 17:22

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表