摘要: def is_valid(x): if len(str(x[3:]))!=18: return False elif len(str(x[3:]))==18 and x[3:].isdigit(): return True else: if x[3:-1].isdigit() and x[-1]!= 阅读全文
posted @ 2022-05-23 18:24 张杰的 阅读(36) 评论(3) 推荐(0) 编辑