Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

Try:

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...