f readines python tidak berfungsi

open('test.txt','r') as f:
    lines = f.readlines()

for line in lines:
    print(line.rstrip('\n'))
Jumping Boy