摘要: info = [] #先定义一个空字典while True: #利用while循环 print(' 1.查看名片') #第一个选项 print(' 2.添加名片') #第二个选项 print(' 3.删除名片') #第三个选项 print(' 4.修改名片') #第四个选项 print(' 5.退出 阅读全文
posted @ 2019-04-24 19:45 雪之痕 阅读(1623) 评论(0) 推荐(1) 编辑
摘要: import yagmailimport psutildef sendmail(subject,contents): #连接邮箱服务器 yag = yagmail.SMTP(user='邮箱名称@163.com',password='邮箱客户端授权密码',host='smtp.163.com') # 阅读全文
posted @ 2019-04-24 19:33 雪之痕 阅读(292) 评论(0) 推荐(1) 编辑