将字符串变量添加到 readlines 结构中每个字符串的开头
Adding a string variable to the beginning of each string in a readlines structure
我导入了一个文件并使用 readlines 将每一行拆分为一个字符串。我有另一个变量 "SubID",我想将其添加到每一行的开头。这是我试过的代码。
lines = file.readlines()
[SubID] + lines
您需要为每行添加您的前缀。这是一种方法:
#!/usr/bin/env python2.7
import os
file_name = "test.txt"
file_handle = open(file_name, "r")
line_prefix = "[SubID]"
for line in file_handle.readlines():
print line_prefix + ":", line.rstrip(os.linesep)
我导入了一个文件并使用 readlines 将每一行拆分为一个字符串。我有另一个变量 "SubID",我想将其添加到每一行的开头。这是我试过的代码。
lines = file.readlines()
[SubID] + lines
您需要为每行添加您的前缀。这是一种方法:
#!/usr/bin/env python2.7
import os
file_name = "test.txt"
file_handle = open(file_name, "r")
line_prefix = "[SubID]"
for line in file_handle.readlines():
print line_prefix + ":", line.rstrip(os.linesep)