这是迭代pythonic的方法吗?

时间:2020-06-27 17:24:14

标签: arrays iteration python-3.7

我正在尝试遍历列表,我的代码很丑。

        elements=[]
    value_and_position=[]
    for element in tiles:
        elements.append(element.get_attribute('class'))

我觉得我已经看到了一种更Python化的方式来编写这样的for循环。有人吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用list comprehension

value_and_position=[]
elements = [element.get_attribute('class') for element in tiles]