CSV = Comma-Separated Values — most common ML data format.
df = pd.read_csv("iris.csv")
print(df.head())
Useful parameters:
sep="," (default) or "\t" for tabheader=0 (first row = columns) or Noneindex_col="id" (use column as index)usecols=["name", "age"] (load only some columns)pd.read_excel("data.xlsx", sheet_name="Sheet1")pd.read_json("data.json")pd.read_sql("SELECT * FROM table", connection)pd.read_clipboard()Common in ML: CSV for tabular data, JSON for API responses.