The |
represents OR
operator in regular expression, you need to escape it using
so updating your regex string to |@
and setting engine='python'
you can get your desired result.
pd.read_table(data,sep='|@',engine='python',index_col=0).astype(str)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…