借助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
相关用法
- Python pandas.period_range()用法及代码示例
- Python pandas.to_numeric用法及代码示例
- Python pandas.date_range()用法及代码示例
- Python Pandas Dataframe.describe()用法及代码示例
- Python Pandas Series.plot()用法及代码示例
- Python Pandas DataFrame.to_latex()用法及代码示例
- Python Pandas Series.str.isspace()用法及代码示例
- Python pandas.map()用法及代码示例
- Python Pandas series.str.get()用法及代码示例
- Python Pandas TimedeltaIndex.name用法及代码示例
- Python Pandas Series.str.pad()用法及代码示例
- Python Pandas dataframe.mul()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Pandas DataFrame.to_html() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。