-
-
Notifications
You must be signed in to change notification settings - Fork 807
Improving Python lessons a bit #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@narayananr thanks for these changes. The first change modifies a line that I just changed for a different pull request. Can you take a look and let me know what you think? I also just changed this lesson to look at html files rather than csv files since we now keep the csv files in a data directory and students are generally working in the top level directory. The third change is good, but can you change the word csv to html? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code below does not use the "data" directory, so maybe this should say "current" directory, since that's what it does.
|
@QuLogic I don't think it adds anything to the lesson for students to list CSV files in the data directory vs html files in the current directory and I think it adds a layer of complication (because they have to look in a different direction). Is there a reason you prefer the CSV files? |
|
I think you meant to tag @narayananr; I didn't make that change. |
|
Hi I suggested the change because I had the same thought. This lesson http://swcarpentry.github.io/python-novice-inflammation/04-files.html currently, uses glob on "html" files, and few statements after it uses glob Thanks On Thu, Jun 18, 2015 at 1:05 AM, Azalee Bostroem notifications@github.com
|
Update License.md md5sum on tools/check based on 2f4703e
|
Somewhat improved versions of the |
Starting to incorporate Library Carpentry materials
I made two changes. On the lesson "Repeating Actions with Loops", I expanded the example a bit on looping through a string. And on the lesson "Analyzing Data from Multiple Files", the glob example was trying to "glob" the files that were not in student's working directory for the lesson. I changed it so that the "glob" will list of files in the student's working directory.