#计算用户输入的内容中索引为奇数并且对应的元素为数字的个数第二种方法content = input(">>>")count = 0for i in range(len(content)):#i就是下标,或者说就是索引 if i % 2 == 1 and content[i].isdigit(): count += 1print(count) #计算用户输入的内容中索引为奇数并且对应的元素为数字的个数的第一种方法
li = []res = ‘ ‘.join(input(">>>")).split()print(res)for i in res: if i.isdigit() and res.index(i) % 2 != 0: li.append(i)print(li)print(len(li))
原文地址:https://www.cnblogs.com/wssaried/p/9900909.html
时间: 2024-10-05 03:42:41