I am trying to print the data from external file(test.txt) after truncating it in python 3.6
But, when I try to do that with open() and read() after writing it with the write(), it is not working.
from sys import argv
script,filename=argv
print(f"We're going to erase {filename}.")
print("If you don't want that, hit CTRL-C (^C).")
print("If you do want that, hit RETURN.")
input("?")
print("Opening the file...")
target=open(filename,"w")
print("Truncating the file. Goodbye!")
target.truncate()
print("Now I'm going to ask you for the three lines.")
line1=input("line 1: ")
line2=input("line 2: ")
line3=input("line 3: ")
print("I'm going to write these to the file")
target.write(line1 + "\n" + line2 + "\n" + line3 + "\n")
a=input("Please type the filename once again:")
b=open(a)
c=b.read()
print(c)
print("And finally, we close it.")
target.close()
Not sure, what am I doing wrong?