如何在Python中创建字符串列和单词列表之间的关系

发布于 2025-01-10 12:14:37 字数 396 浏览 0 评论 0原文

我有一个包含 ID 的表和一列字符串,为了创建视觉效果,我需要在这两组信息之间创建关系。我想知道是否有办法做到这一点。有什么建议吗?非常感谢!

我有一张桌子,如下所示:

在此处输入图像描述

我有一个单词列表:

在此处输入图像描述

I have a table with ID and a column of string, in order to create a visual I need to create a relationship between these two sets of information. I wonder if there is a way to do this. Any suggestions? Many thanks!

I have a table, something like below:

enter image description here

and I have a word list:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无法言说的痛 2025-01-17 12:14:37

我建议你查一下字典。

dict_table = {"English": [1,4], "Business": 1, "Math": [2,3], "music": 2, ...}

或者反过来:

dict_table = {1: ["English", "Business"], 2: ["Math", "music"], ...}

I would suggest you look into dictionaries.

dict_table = {"English": [1,4], "Business": 1, "Math": [2,3], "music": 2, ...}

or the other way around:

dict_table = {1: ["English", "Business"], 2: ["Math", "music"], ...}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文