Python习题集(一)

简介: Python习题集(一)

每天一习题,提升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


解题思路


  1. 打开文件
  2. 循环列表,提取字典
  3. 提取key,value
  4. 写入文件

 

答案


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")
相关文章
|
7月前
|
物联网 Python
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
|
7月前
|
存储 Python
【python】习题第10周题解
【python】习题第10周题解
|
7月前
|
Python
【python】习题第9周
【python】习题第9周
|
7月前
|
自然语言处理 Python
【python】习题第7周(上)
【python】习题第7周(上)
|
7月前
|
Python
【python】习题 1-5周(上)
【python】习题 1-5周(上)
|
7月前
|
Python
【python】习题 第10周
【python】习题 第10周
|
7月前
|
数据安全/隐私保护 Python
【python】习题第8周
【python】习题第8周
|
7月前
|
Python
【python】习题第7周(下)
【python】习题第7周(下)
|
7月前
|
Python
【python】习题 6-10周(下)
【python】习题 6-10周(下)
|
7月前
|
自然语言处理 数据安全/隐私保护 Python
【python】习题 6-10周(中)
【python】习题 6-10周(中)