Order the lines of the code that help you to read and print information from the given CSV file.
Working with CSV
Easy code
Report a typo
Reorder lines using drag or arrows. Adjust indentation with left buttons
for line in students:
separ_line = line.split(',')
students.close()
students = open('students.csv', 'r', encoding='utf-8')
print(separ_line)
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.