摘要: 首先检查pycharm上面是否安装了git,没有安装git那么安装一下; file-Settings-Version Control->查看是否安装git 注意这里path to Git 路径要选中自己安装git的路径 然后填写自己github上面的用户名和密码: 那么接下来建立远程仓库并提交代码 阅读全文
posted @ 2020-07-02 14:03 fyangq 阅读(173) 评论(0) 推荐(0)
摘要: def get_checkcode(id_number_str): id_regex = '[1-9][0-9]{14}([0-9]{2}[0-9X])?' items = [int(item) for item in id_number_str[:-1]] # 加权因子表 factors = (7 阅读全文
posted @ 2020-07-02 11:03 fyangq 阅读(181) 评论(0) 推荐(0)
摘要: from faker import Fakerfaker= Faker("zh_CN")name_female=faker.name_female()name_male=faker.name_male()address= faker.address()telephone= faker.phone_n 阅读全文
posted @ 2020-07-02 10:45 fyangq 阅读(169) 评论(0) 推荐(0)