When "a" is used after opening a file what does it mean code example
Example: file.open("file.txt);
myfile = open("example.txt")
txt = myfile.read()
print(txt)
myfile.close()
myfile = open("example.txt")
txt = myfile.read()
print(txt)
myfile.close()