Python - File Handling Fundamentals
What will be the output of this code if 'test.txt' contains the lines: 'cat', 'dog', 'bird'?
with open('test.txt', 'r') as f:
lines = f.readlines()
print(lines[1].strip())