问题标签 [prettytable]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1146 浏览

python - How to use Pretty table with flask

I am programming my first website with flask one of my sections is a list of all sub-users for the teacher's class so how can I use prettytable with flask to get a table my end goal is a table that looks like this (just the data)

How can I do this preferably with Pretty table but any method would be great!

0 投票
3 回答
7864 浏览

python - 如何从漂亮表中保存表格?

因此,我正在使用库“prettytable”,并且能够在执行时打印出我的数据表。但是,我不知道如何将其保存到文件中。理想情况下,我希望将表格保存为 pdf,以便我可以将其用于我的报告。

这是来自漂亮网页本身的示例代码:

桌子

0 投票
2 回答
4479 浏览

python - Add multiple line in python single table cell

I am not sure how to draw a table like as below, I tried using prettytable but not able to put multiple line in one cell.

NB: Number of lines should be based on the number of the string, so I want to put some n string per line.

Could some one please help?

Here is my data structure to construct the table:

0 投票
1 回答
1315 浏览

r - 如何修复漂亮的表格以正确显示汉字

0 投票
2 回答
6280 浏览

python - 使用漂亮表时如何获取单元格的值

使用prettytable时是否可以获得特定单元格的值?

我有以下代码来遍历一个简单表的所有行。

此示例打印以下 3 个表:

怎么可能只获得或一行Column 1的值?Column 2Column 3

0 投票
1 回答
2252 浏览

python - Python PrettyTable 在同一行打印表格

我正在使用 PrettyTable 'from_db_cursor' 模块来很好地打印我从我的 sql 请求中得到的响应。一切正常,我唯一的问题是,对于某些查询,我想打印它们附加到同一行的表,如下所示:

但我无法找到如何做到这一点,这是我目前使用的代码:

这段代码输出我:

这里的 QUERIES 是一个充满 SQL 请求的 OrderedDict:

像这个。

0 投票
1 回答
452 浏览

python - 弹出窗口和在 kivy 中显示的损坏表

我也是 Python 和 Kivy 的新手,所以我遇到了一些麻烦。

当我使用 kivy 弹出窗口显示表格时(使用“PrettyTable”模块),我得到了这张表格的损坏视图。

截屏

我的python代码:

我的 .kv 代码:

0 投票
1 回答
1268 浏览

python - 使用终端表,我怎样才能将所有数据放在一个表中,而不是拆分到多个表中?

我在打印带有终端表的表格时遇到问题。

这是我的主要脚本:

这是配置文件my.conf

这会为每个条目打印一个表格,如下所示:

但我想要的是:

如何修改脚本以获得此输出?

0 投票
1 回答
3337 浏览

python - Python PrettyTable 读取 csv 文件异常:行的值数不正确,(实际)0!=3(预期)

我的 MacBook Air 上运行着 python。我有一个简单的示例,我正在尝试使用 Python 的漂亮表读取 csv:

下面是我的 csv“test.csv”:

当我运行代码时,我收到以下错误:

很好奇为什么当显然有 3 个字段和 2 行带有数据的项目时,它会得到 0 值。

谢谢

0 投票
1 回答
630 浏览

python - 如何对字典进行原始输入

我是 python 新手,有没有办法修改这个代码,我可以用键盘输入电影和他们的评分,并将它附加到表中的行?