Python - File Handling Fundamentals
What will be the content of 'log.txt' after running this code?
with open('log.txt', 'w') as f:
f.write('Start\n')
with open('log.txt', 'a') as f:
f.write('End\n')