Skip to content

Instantly share code, notes, and snippets.

View wikytam's full-sized avatar
🎲

Tam HUYNH wikytam

🎲
View GitHub Profile
@wikytam
wikytam / merge_csv.py
Last active July 14, 2023 02:45
Merge CSV file using Python
import os
import pandas as pd
if __name__ == '__main__':
csv_files = [file for file in os.listdir('excel') if file.endswith('.csv')]
dfs = []