摘要: def is_valid(id): if len(id) != 18: return False try: for i in id: if i == 'X': continue elif type(eval(i)) == int: continue else: return False except 阅读全文
posted @ 2022-05-24 23:03 乐长森 阅读(17) 评论(2) 推荐(0) 编辑