摘要: 一、实验任务 1.实验任务3 task3.py: 1 def is_valid(ID): 2 ID=str(ID) 3 if len(str(ID))!=18: 4 return False 5 elif ID[0:17].isdigit() and (ID[17].isdigit() or ID[ 阅读全文
posted @ 2022-05-21 10:19 Dimple$ 阅读(22) 评论(1) 推荐(0) 编辑