将for循环的输出分配为动态列表中的变量

问题描述

是否可以将for循环的输出分配为方法输出的变量?两个输出将是相同长度的列表。

下面,我在pdf的每页pdfplumber中执行.pages方法。我想将每个页面分配给变量p0,p1,p2 ...等,然后使用.extracttext方法提取文本。页面总数将是动态的,所以我不能简单地将列表解压缩为(p1,p2,p3)= .....

我正在打印只是为了提供视觉辅助输出

import pdfplumber

with pdfplumber.open(file) as pdf:
    
    print(pdf.pages)
        
    for pages in total_pages_range:
        print("p" + str(pages))

输出为:

[<pdfplumber.page.Page object at 0x7ff6b75e9c50>,<pdfplumber.page.Page object at 0x7ff6b761a4d0>]
p0
p1

我需要在0x7ff6b75e9c50上设置p0 =

非常感谢, G

解决方法

如果我正确理解了您的请求,请使用dict理解:

pages_map = {f'p{i}': page for i,page in enumerate(pdf.pages)}