2022年10月6日 星期四

Convert xls files to xlsx Using Python Pandas Module

 # Convert xls files to xlsx using python pandas module

 # importing pandas as module

import pandas as pd

import os


df = pd.read_excel('file1.xls')

df.to_excel('file1.xlsx')

沒有留言:

張貼留言

Python program to display calendar

# Python program to display calendar of given month of the year # importing calendar module for calendar operations import calendar # set t...