Python/Pandas

From Fundamental Ramen
< Python
Revision as of 08:44, 25 September 2019 by Tacoball (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
df = pandas.read_csv(csv_file, skiprows=1, header=None, names=col_names)
# print(df.head(3))
# print(df.tail(3))
for index, row in df.iterrows():
    print(row)