gpt4 book ai didi

python - 在没有换行符的情况下在python中读取文件

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

我希望能够读取一个文件并逐行添加一个字符串,而中间没有换行符。

text_file = open("read_it.txt", "r")
print text_file.readline() + "0123456789"

输出到

>>
text
0123456789
>>

我想把它输出成这种格式

>>
text0123456789
>>

最佳答案

使用rstrip方法:

text_file.readline().rstrip() + "0123456789"

关于python - 在没有换行符的情况下在python中读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7541721/

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