当每个值都是列表时,对字典的值执行 Lstrip
您好,我试图弄清楚当值是列表时如何对字典的每个值执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用列表理解来迭代所有列表元素。
Use a list comprehension to iterate over all the list elements.