Created
January 21, 2020 03:46
-
-
Save mmaul8/5dfcad28e6e43e93636a77563a49612b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file = input("Input your file name coreectly : ") | |
#Input your file name with extention, example : file.txt | |
#It will work when you use it on same directory of your file | |
bef = input("What text you want to replace? ") | |
aft = input("Input your new text : ") | |
fin = open(file, "rt") | |
data = fin.read() | |
data = data.replace(bef,aft) | |
fin.close() | |
fin = open(file, "wt") | |
fin.write(data) | |
fin.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment