简体   繁体   中英

Printing pandas df without column name

I've been trying to open a.csv, read it in pandas, and print it without the column name. The code I have


df = pd.read_csv(filepath_or_buffer='C:/Users/R2/Documents/Desktop/Programing/Bot/list.csv')
rows = df.loc[[i]]
values = rows.to_string(index = False)
print(values)

Outputs something like this

Value  
 12343

How would I make it so values equal only 12343 and not Value 12343

Try:

values = rows.to_string(index = False, header=False)
print(values)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM