06 2021 档案
摘要:Python发送邮件分为四步 连接到smtp服务器 登陆smtp服务器 准备邮件 发送邮件 导入所需要的包 import smtplib from email.mime.text import MIMEText from email.mime.application import MIMEAppli
阅读全文
摘要:将字符串s="helloworld"反转为‘dlrowolleh’ 1.切片法最常用 s='helloworld' r=s[::-1] print('切片法',r) #结果 切片法 dlrowolleh 2.使用reduce from functools import reduce #匿名函数,冒号
阅读全文
摘要:python join 和 split方法简单的说是:join用来连接字符串,split恰好相反,拆分字符串的。 .join() join将 容器对象 拆分并以指定的字符将列表内的元素(element)连接起来,返回字符串(注:容器对象内的元素须为字符类型) >>> a = ['no','pain'
阅读全文