Shakespeare: Difference between revisions

imported>Ynasser
imported>Ynasser
 
(9 intermediate revisions by the same user not shown)
Line 86:
>>> lv_counter = 0;
</pre>
6. Use a for loop (or while loop, if you like) to read through the lines of the file. While you are reading each line, count the number of lines that contains the word "love"
 
7. Does Shakespeare use a lot of love in his plays? How about other synonyms of "love"?
Line 151:
1
</pre>
For more information on the dictionary data type: https://docs.python.org/2/tutorial/datastructures.html#dictionaries
 
====<font color="navy">Lists and Dictionaries Exercises====
<b>List & Iteration Exercise 1:</b>
* Create a new python programfile.
* Import the list of characters from <b> A Midsummer Night's Dream </b> by importing <code>summerChar</code> and import the play <code>summerNight</code>
 
<pre>
>>> summerChar.SummerChar
# prints all the characters (such as <HELENA>) that are in the play A Midsummer Night's Dream.
</pre>
 
<b>List & Iteration Exercise 2:</b>
* In the same programfile that you created fromin exercisethe 1previous (or start a new file, but don't forget to importexercise:
* Count how many times has <b> <OBERON> </b>has spokespoken.
* Print to screen the name <b><OBERON></b> and the number of times he spoke.
 
<b>Demo: Which of Shakespeare's famous tragic heros talks the most?</b>
Anonymous user