2022年7月24日
摘要: 上周内容回顾 正则表达式 正则表达式 import re phone = input('请输入你个手机号>>>:').strip() if re.match('^[13|15|18|19][0-9]{9}', phone): print(phone) else: print('输入不合法') 正则表 阅读全文
posted @ 2022-07-24 20:38 Joker_Ly 阅读(37) 评论(0) 推荐(0)