我是蟒蛇的新手。我一直在嘗試計算 1-9 在列表中出現(xiàn)的次數(shù),但 python 不會計算該數(shù)字并始終將其視為 1,而不會為數(shù)字 1-9 的出現(xiàn)次數(shù)添加更多計數(shù)。有誰可以幫助我理解為什么?#codefor nmb in ls: if nmb is not ls: frstdic[nmb] = 1 else: frstdic[nmb] = frstdic[nmb] + 1 print (frstdic) #return{'1': 1, '2': 1, '3': 1, '4': 1, '5': 1, '6': 1, '7': 1, '8': 1, '9': 1}# nmb is a string
在 Python 中將數(shù)字作為字符串進(jìn)行計數(shù)
寶慕林4294392
2023-06-27 18:19:53