gpt4 book ai didi

python - 使用格式方法遍历元素

转载 作者:太空宇宙 更新时间:2023-11-04 03:25:30 24 4
gpt4 key购买 nike

这是我的简化代码,因为我无法在 python 3 中发布我的实际代码:

class example(object):
def __init__(self, list1):
self.list1 = list1
def __repr__(self):
if len(self.list1) > 0:
for i in self.list1:
for j in range(1,len(self.list1)):
return ('{0:}{1:}').format(j, i)

x = example(['this', 'is', 'a', 'list'])
x

这应该返回:

1this

现在我希望它返回:

1this
2is
3a
4list

我该怎么做?

最佳答案

只需使用enumerate函数如下:

class example(object):
def __init__(self, list1):
self.list1 = list1
def __repr__(self):
return '\n'.join('{0}{1}'.format(c+1, el) for c, el in enumerate(self.list1))

关于python - 使用格式方法遍历元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33187133/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com