Solution Review: Extracting all the Students With Marks
This review explains the solution for the "student names" problem
We'll cover the following...
We'll cover the following...
Solution
Explanation
The first thing we need to do is read the text file using the open command. Observe this in line 4 of the above code. Next, at line 5, we can use a for loop to traverse over the contents of the text file.
Note: ...