鱼C论坛

 找回密码
 立即注册
查看: 1456|回复: 3

[已解决]求助 Python 中的%

[复制链接]
发表于 2020-3-7 18:31:47 | 显示全部楼层 |阅读模式

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

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

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('第%a 个字符串共有:英文字母 %m 个,数字 %c 个 ,空格%d,其他字符%e个'%(i+1,letters,digit,space,others))
            




为什么运行下去会是这种情况

count("12da")
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    count("12da")
  File "E:/Python .project/检查字符串.py", line 17, in count
    print('第%a 个字符串共有:英文字母 %m 个,数字 %c 个 ,空格%d,其他字符%e个。'%(i+1,letters,digit,space,others))
ValueError: unsupported format character 'm' (0x6d) at index 17

最佳答案
2020-3-7 18:39:04
字符/字符串是 "%s",数字是 "%d",把代码改成这样:
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 个字符串共有:英文字母 %s 个,数字 %s 个 ,空格%d,其他字符%d个'%(i+1,letters,digit,space,others))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-7 18:39:04 | 显示全部楼层    本楼为最佳答案   
字符/字符串是 "%s",数字是 "%d",把代码改成这样:
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 个字符串共有:英文字母 %s 个,数字 %s 个 ,空格%d,其他字符%d个'%(i+1,letters,digit,space,others))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-7 19:32:37 | 显示全部楼层
%s    字符串 (采用str()的显示)

%r    字符串 (采用repr()的显示)

%c    单个字符

%b    二进制整数

%d    十进制整数

%i    十进制整数

%o    八进制整数

%x    十六进制整数

%e    指数 (基底写为e)

%E    指数 (基底写为E)

%f    浮点数

%F    浮点数,与上相同

%g    指数(e)或浮点数 (根据显示长度)

%G    指数(E)或浮点数 (根据显示长度)

希望对你有所帮助
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-8 17:19:07 | 显示全部楼层
一个账号 发表于 2020-3-7 18:39
字符/字符串是 "%s",数字是 "%d",把代码改成这样:

明白了 为你撒花
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 04:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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