pandas read all as string code example
Example 1: change value to string pandas
mtrx['X.3'] = mtrx['X.3'].astype(str)
Example 2: read txt in pandas
data = pd.read_csv('output_list.txt', sep=" ", header=None)
data.columns = ["a", "b", "c", "etc."]