摘要: 使用SMTP模块发送邮件 import smtplib from email.mime.text import MIMEText from email.header import Header msg_from = '7498@qq.com' # 发送方邮箱 passwd = 'nztjmkbfie 阅读全文
posted @ 2023-12-08 21:53 爆炸小龙虾 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Pandas处理EXCEL表格的常用命令 '''1.导入pandas库''' import pandas as pd '''2.导入文件''' #设置文件名称 file="运费明细表.xlsx" df = pd.read_excel(file,sheet_name='运费明细',skiprows=3 阅读全文
posted @ 2023-12-08 12:08 爆炸小龙虾 阅读(18) 评论(0) 推荐(0) 编辑