摘要:
创建一个简单的PPTX文件 from pptx import Presentation class Main(): def __init__(self): prs = Presentation() title_slide_layout = prs.slide_layouts[0] slide = p 阅读全文
摘要:
import pandas as pd class Main(): def __init__(self): # 读取excel self.df = pd.read_excel("C:\\Users\\ajanuw\\Desktop\\pexcel\\test.xlsx") # 打印 print(se 阅读全文