Open asadmehdi785 opened 6 years ago
Thank you for the feedback! I was thinking there must be better way of stripping text with regular expressions. I appreciate the info on this module.
I did enjoy the course and now at least I have an intro to Python!
Criteria 1: Valid Python Code
Criteria 2: Implementation of Project Requirements
Criteria 3: Software Architecture
Criteria 4: Uses Python Language Features
Criteria 5: Produces Accurate Output
Overall Score: 19/20
Overall, excellent work with this project! You did a great job in all aspects of the project, from implementing the project requirements to using Python specific features when applicable. Good job with that!
I just wanted to point you to a string processing module that's included with Python that may be useful for certain aspects of this project, especially with the
prepare_text
method. There is a module calledre
that allows you to do regular expression operations in Python. With this module, we can actually complete what is done in the following function:With a single line of code instead. You can look at this resource for more information about that (you can look at the accepted answer). You can also read more about the
re
module here.Great job overall! I hope you enjoyed the course!