python统计0到9出现的次数
发布网友
发布时间:2022-04-27 12:24
我来回答
共1个回答
热心网友
时间:2023-10-11 01:00
我直接给你说实例吧。
例如n=12,k=1,在 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],我们发现1出现了5次 (1, 10, 11, 12)
def digitCounts(self, k, n):
count = 0
for i in range(n+1):
if i == 0 and i == k:
count += 1
while( i // 10 >= 0 and i != 0):
j = i % 10
if j == k:
count += 1
i = i //10
return count