How to delete all the "TRANSCRIPTION:" from a file?

Solution 1:

the string should be:

text = "TRANSCRIPTION: സൂക്ഷ്മതയും പുലർത്തേണ്ടതുണ്ട്. TRANSCRIPTION: പാലക്കാട് ജില്ലയിലും കൂടുതൽ ശക്തമായ TRANSCRIPTION: ഇടപെടൽ വേണമെന്ന് തീരുമാനിച്ചിട്ടുണ്ട്. TRANSCRIPTION: തിരുവനന്തപുരം ജില്ലയിൽ TRANSCRIPTION: ട്രിപ്പിൾ ലോക്ക് ഡൗൺ TRANSCRIPTION: പിൻവലിച്ചെങ്കിലും ജില്ലയിലെ"

if it is a string you can do

text.replace("TRANSCRIPTION:",'')

if you want to write that into a file you could do:

# note:this will OVERWRITE the current text in the file, 
# if you want to add it to the end just scroll to see other solution
open(filename,'w').write(text)

if you want to just append it to the end you can do:

open(filename,"a").write("\n"+text)