python一些小trick

数据去重

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())

 设置代理时,同一个代理使用次数太多可能会出现如下情况

 

posted @ 2019-04-27 20:27  p0pl4r  阅读(137)  评论(0编辑  收藏  举报