I’ve been trying to open a .csv, read it in pandas, and print it without the column name. The code I have
JavaScript
x
5
1
df = pd.read_csv(filepath_or_buffer='C:/Users/R2/Documents/Desktop/Programing/Bot/list.csv')
2
rows = df.loc[[i]]
3
values = rows.to_string(index = False)
4
print(values)
5
Outputs something like this
JavaScript
1
3
1
Value
2
12343
3
How would I make it so values equal only 12343 and not Value 12343
Advertisement
Answer
Try:
JavaScript
1
3
1
values = rows.to_string(index = False, header=False)
2
print(values)
3