Due: Tuesday, February 2, 8pm
Start with the code to find the smallest number in a list. Can you modify this to find the word in a list that is last alphabetically?
file = open("FILENAME.txt","r") word_list = [] for line in file: for word in line.split(): word_list.append(word)
Make a new Python file and put that bit of code at the top. Replace "FILENAME" with the name of your file, and make sure it is a plain text file in the same directory as your Python script. You can create a plain text file by copying some text from anywhere into a new file in Atom and saving it.
Now, word_list
will contain a list of all the
words in the file. Can you combine this with the previous
exercise to find the alphabetically last word from the
file?
Python has a command called len()
, which will
tell you the length of a string. For example, you would
write: len(word)
. Can you use this to modify
the previous part so that instead of finding the
alphabetically last word, your code finds the longest word
in the file?