Quando utilizo "dados[['principal', 'como_funciona', 'contato']]" para separar as colunas. Me retorna o seguinte erro:
KeyError Traceback (most recent call last)
<ipython-input-42-4c5c270028f1> in <module>()
----> 1 dados[['principal','como_funciona','contato']].str.split
2 frames
/usr/local/lib/python3.7/dist-packages/pandas/core/indexing.py in _validate_read_indexer(self, key, indexer, axis)
1372 if use_interval_msg:
1373 key = list(key)
-> 1374 raise KeyError(f"None of [{key}] are in the [{axis_name}]")
1375
1376 not_found = list(ensure_index(key)[missing_mask.nonzero()[0]].unique())
KeyError: "None of [Index(['principal', 'como_funciona', 'contato'], dtype='object')] are in the [columns]"
Podem me ajudar?