The print result has a serial number, how do I delete it
import pandas as pd
data = pd.read_csv("G:/jeri/1.csv",usecols=['Age'])
print(data)
f = open (r'G:/hello.txt','w')
print (data,file = f)
Open the output txt text to get the result
   Age
0   24
1   29
2   32
3   23
4   58
5   42
6   37
7   42
8   51
0,1,2,3,4,5,6,7,8, I'm a beginner, how do I delete it
 
    