Monday, 2 April 2018

Writing data on a EXCEL Sheet (Using Python)

import xlsxwriter
   
    # Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter('spam.xlsx', engine='xlsxwriter',   options={'encoding':'utf-8'})

# Convert the dataframe to an XlsxWriter Excel object.
list.to_excel(writer, sheet_name='Sheet1',encoding='utf-8')
writer.save()
print("done")

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...