skip printing index code example
Example 1: python obtain data from pandas dataframe without index name
# Basic syntax (use index = False):
df.to_string(index = False)
Example 2: how to print dataframe in python without index
import pandas
d = ['a','b','c','d','e']
df = pandas.DataFrame(data=d)
print (df.to_string(index = False))