Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...