I'm trying to load data with pandas from a txt table.
The column separator was defined as "|@" as you can see in the example:
LINEA DE NEGOCIO|@NOMBRE CLIENTE|@NUMERO CLIENTE|@NUMERO DE CONTRATO|@TIPO DE SEGURO
The system does not allow to use "|@" as separator.
Could you help me with this loading?
Thanks in advance.
I share the code:
df = pd.read_table('D:/Art_492/Encabezado.txt', sep='|@', index_col=0).astype(str)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…