Skip to content
Advertisement

I’m trying to create a table from text

I want to create a table with two columns separated by “:”. So the capitalized words as the first column and everything after the “:” as the second column. I was originally tried to do this from a PDF but that wasn’t working so I copied it to a text file thinking it might be easier that way. I’m very new to Python but this is something I’ll need to know to make transferring data to a spreadsheet easier. How would I do that?? I’m pretty lost :’)

JavaScript

Advertisement

Answer

You can use read_table:

Read general delimited file into DataFrame.


For example,

JavaScript
Advertisement