from sys import argv
script, input_file = argv
def print_all(f):
print (f.read())
def rewind(f):
f.seek(0)
def print_a_line(line_count,f):
print (line_count, f.readline())
current_file = open(input_file)
print ("First let's print the whole file:\n")
print_all(current_file)
print ("Now let's rewind, kind of like a tape.")
rewind(current_file)
print ("Let's sprint three lines:")
current_line = 1
print_a_line(current_line,current_file)
current_line = current_line + 1
print_a_line(current_line,current_file)
current_line = current_line + 1
print (current_line,current_file)
Thông báo lỗi phía dưới:
this is line 1
this is line 2
this is line 3
Now let’s rewind, kind of like a tape.
Let’s sprint three lines:
1 this is line 1
2 this is line 2
3 <_io.TextIOWrapper name=‘text.txt’ mode=‘r’ encoding=‘UTF-8’>
Bạn nào biết mình bị lỗi gì xin chỉ giúp. Thanks
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?