Create and write on excel file using xlsxwriter module in Python 2022

preview_player
Показать описание
Topic: Create and write on excel file using xlsxwriter module in Python 2022

⭐ Special Offers ⭐
------------------------------------------------------------------------------------

💜 You Might be Interested in (Free Tutorials):

Find us on:

💜 Support our channel:
- BTC: bc1qzaqc8z47wsh47npnkv42h2plzgntt6tly02ll6

Copyright © iKh4ever Studio. Any reproduction or illegal distribution of the content in any form will result in immediate action against the person concerned.

DISCLOSURE: Some of the links here are affiliate links. This means at no additional cost to you, I may earn a commission if you click through and make a purchase. These commissions help me create free valuable videos like these for you all. Thanks

#ikh4ever #Python #xlsxwriter
Рекомендации по теме
Комментарии
Автор

import xlsxwriter

workbook =
worksheet =

person = (
["Kevin", 20],
["Bob", 30],
["Alice", 40],
["Tim", 50]
)

row = 0
col = 0

for name, score in person:
worksheet.write(row, col, name)
worksheet.write(row, col + 1, score)
row += 1

workbook.close()

kvelez
join shbcf.ru