I have a separated file where delimiter is 3-symbols: '*'
pd.read_csv(file, delimiter="'*'")
Raises an error:
"delimiter" must be a 1-character string
As some lines can contain *-symbol, I can't use star without quotes as a separator. That's why I don't think stripping lines can help here.
Is it possible to parse separated files with separators that contains more than 1 symbol?
'*'with a comma or other single character separator before reading the file with pandas.