每天一习题,提升Python不是问题!!有更简洁的写法请评论告知我!
https://www.cnblogs.com/poloyy/category/1676599.html
有一个数据list of dict如下
a = [
{"test1": "123456"},
{"test2": "123456"},
{"test3": "123456"},
]
写入到本地一个txt文件,内容格式如下:
test1,123456
test2,123456
test3,123456
lists = [
{"yoyo1": "111111"},
{"yoyo2": "222222"},
{"yoyo3": "333333"},
]
with open("test.txt", "w+", encoding="utf-8") as f:
for data in lists:
for key, value in data.items():
f.write(f"{key},{value}\n")