摘要:
修改文件的第一种方式(小文件用这种方式): f = open('b.txt', 'a+', encoding='utf-8')f.seek(0)res = f.read()new_res = res.replace('1', '5')f.seek(0)f.truncate() # 清空文件f.wri 阅读全文
摘要:
def is_float(s): s = str(s).strip() if s.count('.') == 1: left, right = s.split('.') if left.isdigit() and right.isdigit(): # 正小数 return True # 负小数 el 阅读全文
摘要:
import randomimport stringcount = input('请输入你要产生多少条密码:').strip()passwords = set()if count.isdigit(): while len(passwords) < int(count): pwd = set(rand 阅读全文
摘要:
集合可以去掉重复的,s = set(),这种形式是集合,集合是无序的,可以把所有的可迭代对象转为集合xn = ['ggy', 'agr', 'hello']python = ['ggy', 'ssj', 'zy']s_xn = set(xn)s_python = set(python)print(s 阅读全文