logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Python之确定是否为合法邮箱地址

#是否为合法邮箱email=input("请输入邮箱地址:")index1=email.find("@")index2=email.find(".")if index1==-1:print("邮箱地址必须包括@")elif index2==-1:print("邮箱地址必须包括.")elif index2<index1:print("邮箱地址的最后一个.在@之后")elif index2==l

#python
Python中字母大小写转换

(1)转字母ch=input("请输入字母:")if ch>'a' and ch<'z':print("大写:",ch.upper())elif ch>='A' and ch<='Z':print("小写:",ch.lower())else:print("输入错误")#(2)字符串(全转)ch=input("请输入字母:")print(ch.swapcase())#a小转大

文章图片
#python
到底了