我有一个要导出到 excel 的变量列表。但是,我在创建for
循环时遇到了问题。它似乎使用变量名的实际值而不是变量名,这是有道理的。我也试图通过变量的名称来命名 excel 文件,我认为我可以str(factor)
在for
循环中实现。
形式的可变因素
factors= camelot.read_pdf('Name_pdf',flavor='stream',pages='1-2')
factors=[base_rate,territory_factor,tier_factor,protection_class_factors,age_of_home,protective_device_option,law_multi_new_construc,claim_free,new_home,tenure_aoi,prior_insurance_discount,deductible_peril,construction_type,dwelling_rating_limit,territory_adjustment_factor]
for factor in factors:
factor.export(str(factor)+'.xlsx',f='excel')
感谢您的帮助。