-
Notifications
You must be signed in to change notification settings - Fork 20
lessons.md reviewed #31
Comments
If you want another view of the Markdown and how it is being translated/parsed into the website, you can see this link. It is a new tool that I created that will download the live markdown from GitHub and preview the way that the website interprets the markdown. In order to access it, you'll have to be logged in using Once you're logged in, you can click "Preview in parser" and it should show you what the live markdown is, and how the website will interpret your markdown. |
Here's my thoughts and suggestions for the python workshop -
|
If you do leave it, I think you need to teach how to interrupt (Ctrl-c), otherwise they will be stuck on an infinite loop. Also, teach them how to include a break option on the loop. There is another challenge later that you suggest the while loop. Same goes there.
|
I've finished addressing all of the above, including adding a final challenge to get people started with scraping. I also implemented one of Rafa's suggestion to make the book loop a bit more intuitive. Rather than checking for the "correct" book, it checks for the field of study, then prints out a book. This is for the "Conditionals" lesson, though it also bleeds into the challenge in "Inputs." The code is below: field = "Media Studies"
if field == "Media Studies":
print("Grammophone, Film, Typewriter")
elif field == "Critical University Studies":
print("The Undercommons")
elif field == "Textual Scholarship":
print("Radiant Textuality")
elif field == "Critical Race Studies"
print("The New Jim Code")
elif field == "DH Methodologies"
print("Algorithmic Criticism")
else:
print("I don't know what field you're talking about! I'm just a little program...") |
Feel free to reach out to me and @lmrhody and ask for help, if you need it. Also feel free to involve others in the group!
The text was updated successfully, but these errors were encountered: