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”可以自動實現剔除重復數據。