标签:判断 内容 多少 int 单位 操作 遍历 整数 put
content = input(‘请输入一段内容:‘).strip() # 对输入的内容进行去空格操作 虽然没啥必要
count = 0 # 使用count来对出现次数计数
for i in content: # 对字符串进行遍历
if i.isdigit(): # 判断字符串是否为数字
count += 1
print(f‘{content}中出现了{count}次整数‘)
标签:判断 内容 多少 int 单位 操作 遍历 整数 put
原文地址:https://www.cnblogs.com/lcfzh/p/10051329.html