Answers for "how to remove characters from text file in python"

2

python delete text in text file

# Delete all text in a text file
f = open("text_file.txt", "r+")
f.truncate(0)
f.close()
Posted by: Guest on April-30-2021
0

how to find and remove certain characters from text string in python

a_string = "addbdcd"

a_string = a_string.replace("d", "")

print(a_string)
Posted by: Guest on May-21-2021

Code answers related to "how to remove characters from text file in python"

Python Answers by Framework

Browse Popular Code Answers by Language