使用str.index()时在python中获取“字符缓冲区对象”错误

时间:2013-02-21 20:45:47

标签: python string indexing

我正在尝试对字符串进行排序,并且我不断收到错误:

TypeError:期望一个字符缓冲区对象

这是我的代码:

        if number.index(i) in guess and not number.index(i) == guess.index(i):
            replace(guess.index(i),'COW')

        if number.index(i) == guess.index(i):
            replace(guess.index(i),'BULL')

我该如何解决这个问题?

0 个答案:

没有答案