此處新增。請看看我的文檔字符串,看看有什麼我想要做的事:將字符串列表中的數字進行計數並將它們作爲整數列表返回
def count(data):
""" (list of list of str) -> list of int
Return the numbers of occurrences of strings that end in digits 0, 1, or 2
for each string.
>>> data = [['N', 'OW1'], ['Y', 'EH1', 'S'], ['AW1', 'OW1']]
>>> count(data)
[1, 1, 2]
"""
num_list = []
num = 0
for sublist in phonemes:
for item in sublist:
if item[-1].isdigit():
num += 1
num_list.append(num)
return num_list
我不知道如何去爲每個data
sublist
造就了一批。這是否是正確的方法?任何幫助都會很棒。
這有助於很多。謝謝。 – Sarah 2015-04-01 03:50:51