Python - File Handling Fundamentals
What will be the content of
file.txt after running this code if the file initially contains 'Data'?
with open('file.txt', 'a') as f:
f.write('123')