python基础学习--字符串和文件数据处理--附代码

Posted Elaine+1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础学习--字符串和文件数据处理--附代码相关的知识,希望对你有一定的参考价值。

一. 有两行数据,存在test_data.txt:

param:{"phone":"18688773467","pwd":"123456"}@url:"http://119.23.241.154:8080/futureloan/mvc/api/member/register"

param:{"phone":"18688773467","pwd":"123456"}@url:"http://119.23.241.154:8080/futureloan/mvc/api/member/login"

 

请利用open函数把这两行数据读取出来,进行数据处理,然后最终的结果是:

res=[{‘param‘:{"phone":"18688773467","pwd":"123456"},‘url‘:‘http://119.23.241.154:8080/futureloan/mvc/api/member/register‘},{‘param‘:{"phone":"18688773467","pwd":"123456"},‘url‘:‘http://119.23.241.154:8080/futureloan/mvc/api/member/login‘} ]

 

def read_file(f):
    res = []
    file = open(f,r)
    content = file.readlines()  #读取所有行
    for line in content:
        temp = line.strip("
")    #处理行末尾的换行符
        temp_1 = temp.split("@")    #按@再划分
        d = {}
        for item in temp_1:
            sep = item.find(":")
            k = item.split(":",1)[0]
            v = item.split(":",1)[1]
            d[k]=v  #组合为字典
        res.append(d)
    file.close()
    return res
res = read_file("test_data.txt")
print("res={}".format(res))

 

以上是关于python基础学习--字符串和文件数据处理--附代码的主要内容,如果未能解决你的问题,请参考以下文章

2022年最新Python学习路线图(内附视频资料)六张图带你掌握Python技巧

机器学习神经网络识别手写数字(附python源码)

python 基础学习--循环语句--附代码

中文版!python版数据结构机器学习深度学习TensorFlow和PyTorch五件套!(附免费下载)

python就该这样学,零基础入门python,涨薪20K,附全套学习路线及经验分享

零基础学python有什么建议?零基础也能学python(附学习资料)