-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Open
Description
import pandas as pd
Define the columns for the Excel sheet
columns = ['numbers', 'equipments', 'action plan', 'quotation', 'cast', 'remarks']
Create an empty DataFrame with the specified columns
df = pd.DataFrame(columns=columns)
Save the DataFrame to an Excel file
excel_filename = 'equipment_action_plan.xlsx'
df.to_excel(excel_filename, index=False)
print(f"Excel file '{excel_filename}' created successfully with columns: {columns}")
Metadata
Metadata
Assignees
Labels
No labels