将列表解包到有效载荷

时间:2019-04-29 11:34:02

标签: python-3.x string-concatenation payload

我想解开有效载荷中的列表项。以下是我想出的解决方案,但是我不确定这是最好的方法,而且我很确定可以肯定地改善这一点。

import ast

texts = ["text1",
         "text2",
         "text3"]

attachments = []

for i, text in enumerate(texts):
    attachment = ''.join(str({
        "text": "some text",
        "action": [
            {
                "text": text,
                "value": str(i+1)
            }
        ]}))
    attachments.append(attachment)

payload = [ast.literal_eval(attachments[i]) for i in range(len(attachments))]

预期结果:

[{'text': 'some text', 'action': [{'text': 'text1', 'value': '1'}]}, {'text': 'some text', 'action': [{'text': 'text2', 'value': '2'}]}, {'text': 'some text', 'action': [{'text': 'text3', 'value': '3'}]}]

1 个答案:

答案 0 :(得分:1)

您可以使用列表理解:

texts = [
    'text1',
    'text2',
    'text3',
]
payload = [
    {
        'text': 'some text',
        'action': [
            {
                'text': text,
                'value': str(i+1),
            }
        ]
    }
    for i, text
    in enumerate(texts)
]
print(payload)

输出

[{'text': 'some text', 'action': [{'text': 'text1', 'value': '1'}]}, {'text': 'some text', 'action': [{'text': 'text2', 'value': '2'}]}, {'text': 'some text', 'action': [{'text': 'text3', 'value': '3'}]}]