Reputation: 1195
More specifically, I have been creating an on going dictionary that I add to everytime I come across a new word. I write the word in 24pt in Georgia font, and then write the definition next to it in 18 pt Helvetica. I would really like python to group each word (and definition) together and then rearrange them in different ways such as alphabetically, word length, date added, etc. But that is my pipe dream for now; I would be content just having the ability to search for words in my list with the constraining factor being "only words in Georgia OR 24 pt".
EDIT: here is a simple algorithm I came up with to achieve what I want, but I have no clue how to go about doing it or how to incorporate it into a GUI and make it a full program.
Upvotes: 0
Views: 1451
Reputation: 2665
Check out this documentation, only requires the pyWin32 module!
Upvotes: 1