标签: python
我希望能够读取一个文件并逐行添加一个字符串,而不会在中间插入换行符。
text_file = open("read_it.txt", "r") print text_file.readline() + "0123456789"
输出到
>> text 0123456789 >>
我希望将其输出为此格式
>> text0123456789 >>
答案 0 :(得分:6)
使用rstrip方法:
text_file.readline().rstrip() + "0123456789"