gpt4 book ai didi

python - 疯狂的字符串连接

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:54 25 4
gpt4 key购买 nike

我正在尝试将 .txt 列表中的每个单词连接到字符串 eg{ 'word' + str(1) = 'word1' }使用此代码:

def function(item):
for i in range(2):
print item + str(i)

with open('dump/test.txt') as f:
for line in f:
function(str(line))

我将使用仅包含两个词(“this”、“that”)的 txt 文件。我得到的是:

this
0
this
1
that0
that1

我期待的是:

this0
this1
that0
that1

如果我只使用 function('this')function('that') 它工作正常,但为什么它不能用于 txt 输入?

--- 编辑:已解决,谢谢!问题是由

newline characters in the strings received

解决办法:看答案

最佳答案

你应该改变

print item + str(i)

print item.rstrip() + str(i)

这将删除 function 中接收到的字符串中的所有换行符。


一些其他提示:

  1. 打印数据的更好方法是使用.format 方法,例如在你的情况下:

    print '{}{}'.format(item.strip(), i)

    如果您有更复杂的任务,这种方法非常灵活。

  2. 从文件中读取的所有行都是字符串 - 您不必对它们调用 str()

关于python - 疯狂的字符串连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20897366/

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