当每个值都是列表时,对字典的值执行 Lstrip

发布于 2025-01-10 20:03:25 字数 379 浏览 0 评论 0原文

您好,我试图弄清楚当值是列表时如何对字典的每个值执行 lstrip。我们将字典的名称命名为test

这是字典测试中一个键值对的示例。有 100 多个键值对。

  'names: ['10jack',
  '300alex',
  '200michael',
  '105mike',
  '234joe',
  '50robert']'

我尝试了以下方法,但它不起作用,因为字典的值是一个列表。我正在尝试删除每个名字前面的数字。

clean_dict = {key: item.lstrip('0123456789.- ') for key, item in test.items()}

Hello I am trying to figure out how to perform an lstrip on each value of a dictionary when the value is a list. Lets call the name of the dictionary test.

This is an example of one key-value pair in the dictionary test. There are 100+ key-value pairs.

  'names: ['10jack',
  '300alex',
  '200michael',
  '105mike',
  '234joe',
  '50robert']'

I tried the following and it wasn't working since the value of the dictionary was a list. I am trying to remove the numbers in front of each name.

clean_dict = {key: item.lstrip('0123456789.- ') for key, item in test.items()}

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

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

发布评论

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

评论(1

执笏见 2025-01-17 20:03:25

使用列表理解来迭代所有列表元素。

clean_dict = {key.strip(): [el.lstrip('0123456789.- ') for el in value] for key, value in test.items()}

Use a list comprehension to iterate over all the list elements.

clean_dict = {key.strip(): [el.lstrip('0123456789.- ') for el in value] for key, value in test.items()}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文