Skip to content

Instantly share code, notes, and snippets.

@cyb3rsalih
Created April 15, 2024 06:27
Show Gist options
  • Save cyb3rsalih/4f194ba48224e7857bf0b5faeb4e39dc to your computer and use it in GitHub Desktop.
Save cyb3rsalih/4f194ba48224e7857bf0b5faeb4e39dc to your computer and use it in GitHub Desktop.
Turn CSV into XLSX
import pandas as pd
# CSV dosyasını oku
df = pd.read_csv("in.csv")
# DataFrame'i XLSX formatında kaydet
df.to_excel("out.xlsx", index=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment