摘要:
import os def get_fname(): while True: f_name = input('输入用户名:') if not os.path.exists(f_name): break print('%s已存在,青重新输入'%f_name) return f_name def get_co... 阅读全文
摘要:
1 #!/usr/local/bin/python3 2 # -*- coding: utf-8 -*- 3 4 """ 5 @author: Ray 6 @contact: raylively@163.com 7 @software: ${PRODUCT_NAME} 8 @Site : ${SITE} 9 @file: ${NAME}.py 10 @time: $... 阅读全文