Gencoding/fun_count.py
2023-12-28 14:10:34 +08:00

8 lines
150 B
Python

from tqdm import tqdm
if __name__ == '__main__':
file_name = './fun_count.jsonl'
fil = open(file_name, mode='r')
for item in tqdm(fil):