當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas DataFrame.to_html()用法及代碼示例


借助DataFrame.to_html()方法,我們可以通過使用獲取 DataFrame 的html格式DataFrame.to_html()方法。

用法: DataFrame.to_html()
返回:Return the html format of a dataframe.

範例1:
在這個例子中,我們可以說DataFrame.to_html()方法,我們能夠獲取 DataFrame 的html格式。


# 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())

輸出:

Name Jitender Rahul
0 Marks 78 77.9

範例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())

輸出:

Name Jitender Purnima
0 Marks 78 78.9
1 Gender Male Female


相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Pandas DataFrame.to_html() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。