Code: Select all
with open("school_grades.txt) as school_grades_dot_txt:
print(school_grades_dot_txt.readline())
# In this form, the file is automatically closed after reading.
Code: Select all
with open("school_grades.txt) as school_grades_dot_txt:
print(school_grades_dot_txt.readline())
# In this form, the file is automatically closed after reading.