Created
September 8, 2021 05:43
-
-
Save iamtalhaasghar/19d4a7d7db095bc712fb5041fef23a54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
data = pd.read_csv('emails.csv') | |
data = data.set_index('Roll') | |
data.to_html('emails.html') | |
#data = data.drop('Name',axis=1) | |
#data.to_excel('emails.xlsx',sheet_name='Sheet1') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment