# Iris Dataset CSV Generator This repository contains a simple Python script to load the Iris dataset, assign basic column names from the beginning, and export the data to a CSV file. ## Objective The main purpose of this repository is to generate a clean CSV version of the Iris dataset with short and simple column names: - `sl` : sepal length - `sw` : sepal width - `pl` : petal length - `pw` : petal width - `target` : numeric class label - `tNames` : class name ## Requirements This project uses Python and the following libraries: - `pandas` You can install them with: ```bash pip install pandas