【发布时间】:2021-08-25 16:45:21
【问题描述】:
我有一个函数,它接受一个字符串来计算单个字符并将字符连同它出现的时间量一起放入一个字符串中。例如:
isanagram("surfer")
返回
w1 = {'a': 0, 'b': 0, 'c': 0, 'd': 0, 'e': 1, 'f': 1, 'g': 0, 'h': 0, 'i': 0, 'j': 0, 'k': 0, 'l': 0, 'm': 0, 'n': 0, 'o': 0, 'p': 0, 'q': 0, 'r': 2, 's': 1, 't': 0, 'u': 1, 'v': 0, 'w': 0, 'x': 0, 'y': 0, 'z': 0}
虽然当我将此函数与两个不同的参数进行比较时,打印语句输出 True 而不是 False,这显然应该是。有没有人可以看看。这是我的代码:
alphabetlist = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
alphabetdict = {}
newalphadict = {}
def isanagram(aword):
for i in alphabetlist:
count = word.count(i)
alphabetdict[i] = count
return alphabetdict
print(isanagram("computer") == isanagram("science")) #outputting True. Should be outputting False.
【问题讨论】:
-
isanagram()将aword作为参数,但在函数中您使用word -
你不断地添加到同一个字典对象中......
-
aside:python 有一个 Counter 对象:
from collections import Counter; c = Counter("computer")
标签: python python-3.x function dictionary