加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
从dict数据制作表格.py 443 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
"""
Created on Sat May 8 11:19:06 2021
@author: Administrator
"""
import os
import pandas as pd
path = 'd:/5G竞赛题库/'
os.chdir(path)
files = os.listdir()
for file in files:
with open(file) as f:
content = f.read()
dict_tmp = eval(content)
df_tmp = pd.DataFrame(dict_tmp)
with pd.ExcelWriter(file.replace('.txt','.xlsx')) as f:
df_tmp.to_excel(f, index =False)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化