在python中,是否可以在特定字符数后插入文本文件中的字符串?

时间:2016-11-22 22:14:12

标签: python string python-3.x text

这样打开一个文本文件,并在文件中的特定位置(以字符计算)插入文本?

我正在思考...... ...

def insert_text(filename, text_to_insert, position):
    with open(filename, "w") as file:
         for line in file:
            for ch in line:
                if ch is position:
                    #insert text at position?

0 个答案:

没有答案