gpt4 book ai didi

Python 分割字符串

转载 作者:行者123 更新时间:2023-12-01 04:26:51 25 4
gpt4 key购买 nike

我正在尝试读取文件并输出结果。我的文件 test.txt拉维、 curl 查兰, git 我需要打印如下- {用户名:“ravi”,应用程序:curl}- {用户名:“charan”,应用程序:git}

我正在尝试如下

    file = open("test.txt", "r")
for line in file.readlines():
line = line.strip()
parts = line.split("\n")
for part in parts:
print ("-" + "{" + "Username:" + "" + part[0:4] + " " + "Application:" + part[5:9] + "}")

输出:-{用户名:ravi 应用程序:curl}-{用户名:char 应用程序:n,gi}

请告诉我如何修改代码才能将 Ou 放入以下格式。

  • {用户名:“ravi”,应用程序:curl}
  • {用户名:“charan”,应用程序:git}

最佳答案

with open("test.txt", "r") as my_file:
for line in my_file:
line = re.findall('(\w+)', line)
print '{Username:"%s", Application:%s}' % (line[0], line[1])
print '{Username:"%s", Application:%s}' % (line[2], line[3])

关于Python 分割字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32981929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com