1

我有这个代码:

from tabulate import tabulate                                                                                                                                           
import pandas                                                                                                                                                     

df = pandas.DataFrame({'Col2' : ['Hello', 'How' , 'Are', 'You'],                                                                                                            
                   'Col3' : ['Hi', 'I', 'am', 'fine']})                                                                                                                 
nice_table = tabulate(df, headers='keys', tablefmt='psql')                                                                                                              
print(nice_table)   

它打印这个:

+----+--------+--------+                                                                                                                                                
|    | Col2   | Col3   |                                                                                                                                                
|----+--------+--------|                                                                                                                                                
|  0 | Hello  | Hi     |                                                                                                                                                
|  1 | How    | I      |                                                                                                                                                
|  2 | Are    | am     |                                                                                                                                                
|  3 | You    | fine   |                                                                                                                                                
+----+--------+--------+  

有没有办法访问和打印给定单元格的内容nice_table

4

2 回答 2

1

不。请记住,tabulate文档中提到的唯一目的是:

Python 中的漂亮打印表格数据

此外,如果您运行type(nice_table),您会看到tabulate返回一个string. 因此,对于除了漂亮打印数据框之外的任何操作,您都必须使用df.

于 2018-12-13T13:02:19.170 回答
-1
df.loc[[2, 'Col3']]
#am
df.loc[[0, 'Col2']]
#Hello

更多信息: pandas.DataFrame.loc

于 2018-12-13T12:35:44.263 回答