Я хочу найти все значения индекса, содержащие строку ' (target)'
.
Пример:
index = pd.Index(['TIC7201-PV (target)', 'TIC7202-PV', 'TIC7203-PV'])
print(index.str.contains(' (target)'))
Что я получаю:
[False False False]
What I ожидается:
[ True False False]
Для сравнения:
print(index.str.contains('(target)'))
print(index.str.endswith(' (target)'))
дает:
[ True False False]
[ True False False]