摘要:
使用SMTP模块发送邮件 import smtplib from email.mime.text import MIMEText from email.header import Header msg_from = '7498@qq.com' # 发送方邮箱 passwd = 'nztjmkbfie 阅读全文
摘要:
Pandas处理EXCEL表格的常用命令 '''1.导入pandas库''' import pandas as pd '''2.导入文件''' #设置文件名称 file="运费明细表.xlsx" df = pd.read_excel(file,sheet_name='运费明细',skiprows=3 阅读全文