How to print pandas DataFrame without index
The line below would hide the index column of DataFrame when you print
df.style.hide_index()
Update: tested w Python 3.7
print(df.to_csv(sep='\t', index=False))
Or possibly:
print(df.to_csv(columns=['A', 'B', 'C'], sep='\t', index=False))
python 2.7
print df.to_string(index=False)
python 3
print(df.to_string(index=False))