欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python怎么另起一行

阮建安2年前16瀏覽0評論

python怎么另起一行?

#readdatafromfile

withopen("data_src.txt",'rt')assrc:

data=[ln.strip()forlninsrc]

#distinctdataandwritetofilewith','join

withopen("data_sto.txt",'wt')assto:

sto.write(','.join(list(set(data))))

python中set是“unorderedcollectionofuniqueelements”可以自動實現剔除重復數據。