Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Pandas DataFrame.to_html() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With help of DataFrame.to_html() method, we can get the html format of a dataframe by using DataFrame.to_html() method.

Syntax : DataFrame.to_html()
Return : Return the html format of a dataframe.

Example #1 :
In this example we can say that by using DataFrame.to_html() method, we are able to get the html format of a dataframe.




# import DataFrame
import pandas as pd
  
# using DataFrame.to_html() method
gfg = pd.DataFrame({'Name': ['Marks'], 
                    'Jitender': ['78'],
                    'Rahul': ['77.9']})
  
print(gfg.to_html())

Output :

NameJitenderRahul
0Marks7877.9

Example #2 :




# import DataFrame
import pandas as pd
  
# using DataFrame.to_html() method
gfg = pd.DataFrame({'Name': ['Marks', 'Gender'],
                    'Jitender': ['78', 'Male'],
                    'Purnima': ['78.9', 'Female']})
  
print(gfg.to_html())

Output :

NameJitenderPurnima
0Marks7878.9
1GenderMaleFemale
My Personal Notes arrow_drop_up
Last Updated : 17 Sep, 2019
Like Article
Save Article
Similar Reads
Related Tutorials