已知文件1.txt只有一行,内容为:123456789。运行以下程序,输出结果是?( )
with open('1.txt') as f: print(f.read(1)) f.seek(2) print(f.read(1))
2 3
1 3
2 4
1 4