1. ホーム
  2. python

[解決済み】re.subが "Expected string or bytes-like object "でエラーになる。

2022-02-06 23:56:52

質問

このエラーに関する複数の投稿を読みましたが、まだ解明できていません。私の関数をループさせようとしたとき。

def fix_Plan(location):
    letters_only = re.sub("[^a-zA-Z]",  # Search for all non-letters
                          " ",          # Replace all non-letters with spaces
                          location)     # Column and row to search    

    words = letters_only.lower().split()     
    stops = set(stopwords.words("english"))      
    meaningful_words = [w for w in words if not w in stops]      
    return (" ".join(meaningful_words))    

col_Plan = fix_Plan(train["Plan"][0])    
num_responses = train["Plan"].size    
clean_Plan_responses = []

for i in range(0,num_responses):
    clean_Plan_responses.append(fix_Plan(train["Plan"][i]))

以下はそのエラーです。

Traceback (most recent call last):
  File "C:/Users/xxxxx/PycharmProjects/tronc/tronc2.py", line 48, in <module>
    clean_Plan_responses.append(fix_Plan(train["Plan"][i]))
  File "C:/Users/xxxxx/PycharmProjects/tronc/tronc2.py", line 22, in fix_Plan
    location)  # Column and row to search
  File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python36\lib\re.py", line 191, in sub
    return _compile(pattern, flags).sub(repl, string, count)
TypeError: expected string or bytes-like object

解決するには?

コメントにあるように、一部の値が文字列ではなく、浮動小数点数になっているようでした。に渡す前に、文字列に変更する必要があります。 re.sub. 最も簡単な方法は location に変更します。 str(location) を使用する場合 re.sub. になっていても、とりあえずやっておいて損はないでしょう。 str.

letters_only = re.sub("[^a-zA-Z]",  # Search for all non-letters
                          " ",          # Replace all non-letters with spaces
                          str(location))