数据去重
lst = ['1','2','3','3'] lst = list(set(lst))
不同根目录下引用另一个库
例如 |--a--a.py |--b--b.py 在b.py中调用库a.py import sys.path.append("../") from a.a import *
json文件的读写
#写 with open(f'aa.json', 'w') as file: file.write(json.dumps(json_file)) #读 with open(f'aa.json', 'r') as infile: aa = json.loads(infile.readline())
设置代理时,同一个代理使用次数太多可能会出现如下情况