BasicWalker / pwp-capstones

0 stars 0 forks source link

Murder Mysterry Summary & Rubric Score #1

Open karl-project-review opened 6 years ago

karl-project-review commented 6 years ago

Rubric Score

Criteria 1: Valid Python Code

BasicWalker commented 6 years ago

I was aware of some of the initials checking limitations, but tested it to make sure it worked for the samples given. A possible expansion of the idea could check the prior word in the string to the initial in question and check to see if it is equivalent to itself with the .title() method and if true would suggest that it is a first name, furthermore suggesting a possible initial following it.

Thank you for your review, and the tip about the library, I actually remembered that there was a list of the uppercase alphabet in the scrabble project that I pasted over instead of typing it.🤣 haha To be honest, I'm unsure and a little iffy on library usage as the instructions on downloading anaconda were very vague and I kind of winged it. Do you need to download the modules, or are they included with anaconda so you can import them if you know of their existence?

Also, do you have a good reference for information on modules, or is most of it covered in the python documentation?

karl-project-review commented 6 years ago

The standard Python modules should be included in the Anaconda download. Here is a listing of them (from the Python documentation), which you may want to browse through just to see what kind of stuff is there: https://docs.python.org/3/py-modindex.html Also (generally) included in Anaconda are the NumPy and SciPy libraries, which you can read more about here: https://docs.scipy.org/doc/ The Python community has a developed a lot of other miscellaneous libraries that are not included in Anaconda, though, so if there is a particular area of coding you are interested in (game design, a particular discipline of scientific computing, etc), it might be worth doing a web search to see if there is a reputable, open source Python library related to that subject as well.