Python - Descriptor 'split' requires a 'str' object but received a 'unicode'

后端 未结 3 2073
小鲜肉
小鲜肉 2021-02-20 14:26

Erm, I have ready-to-use code, and I\'m sure it really works, but I get the following error:

TypeError: descriptor \'split\' requires a \'str\' object but

相关标签:
3条回答
  • 2021-02-20 14:32

    As @Abe mentioned, the problem here is, you are using str.split to split an object of type unicode which is causing the failure.

    There are three options for you

    1. In this particular case, you can simply call the split() method for the object. This will ensure that irrespective of the type of the object (str, unicode), the method call would handle it properly.
    2. You can also call unicode.split(). This will work well for unicode string but for non-unicode string, this will fail again.
    3. Finally, you can import the string module and call the string.split function. This function converts the split() function call to method call thus enabling you to transparently call the split() irrespective if the object type. This is beneficial when you are using the split() as callbacks esp to functions like map()
    0 讨论(0)
  • 2021-02-20 14:49

    The problem is that str.split is a method of the str class, but is being called for an object of the unicode class. Call the method directly with ipSplit = self.serverVars[0].split('.') to have it work for anything (including str and unicode) with a split method.

    0 讨论(0)
  • 2021-02-20 14:52

    Neither method worked when using isdigit. If you are in a similar solution, you could try a try-except block similar to

    try:
        output += filter(str.isdigit, some_string)
    except TypeError:
        output += filter(unicode.isdigit, some_string)
    
    0 讨论(0)
提交回复
热议问题