1. 程式人生 > >Python(52)_統計使用者輸入內容,索引為奇數,並且對於的索引的是數字的個數

Python(52)_統計使用者輸入內容,索引為奇數,並且對於的索引的是數字的個數

#-*-coding:utf-8-*-

'''
統計使用者輸入內容,索引為奇數,並且對於的索引的是數字的個數
'''
count = 0
content = input(">>>")
for i in  range(len(content)):
    if i%2 == 1 and content[i].isdigit():
        content +=1
print(count)