diff options
author | Shantanu Choudhary | 2010-04-13 12:24:44 +0530 |
---|---|---|
committer | Shantanu Choudhary | 2010-04-13 12:24:44 +0530 |
commit | 8220db04ffbbc78c08de8a606ba9582b72850e47 (patch) | |
tree | 9fdd013bebb39ccdfff37ee45eed45a3e68c7139 /statistics.txt | |
parent | ad406cea7c5a2ee6cf9fe2d265d4242d9c8f10d3 (diff) | |
download | st-scripts-8220db04ffbbc78c08de8a606ba9582b72850e47.tar.gz st-scripts-8220db04ffbbc78c08de8a606ba9582b72850e47.tar.bz2 st-scripts-8220db04ffbbc78c08de8a606ba9582b72850e47.zip |
Minor edits.
Diffstat (limited to 'statistics.txt')
-rw-r--r-- | statistics.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/statistics.txt b/statistics.txt index 646addd..2ae6f28 100644 --- a/statistics.txt +++ b/statistics.txt @@ -6,7 +6,7 @@ Till now we have covered: In this session, we will use them and some new concepts to solve a problem/exercise. -We have a file named sslc1.txt. +We have a file named sslc.txt. It contains record of students and their performance in one of the State Secondary Board Examination. It has 180, 000 lines of record. We are going to read it and process this data. We can see the content of file by opening with any text editor. Please don't edit the data. @@ -119,7 +119,7 @@ Let's now start off with the code We first create an empty dictionary science = {} -now we read the record data one by one from the file sslc1.txt +now we read the record data one by one from the file sslc.txt for record in open('sslc.txt'): |