learn-more-python-the-hard-way-solutions icon indicating copy to clipboard operation
learn-more-python-the-hard-way-solutions copied to clipboard

Results 4 learn-more-python-the-hard-way-solutions issues
Sort by recently updated
recently updated
newest added

Two fixes: - Removed superfluous iterator i. - enabled get_slot to return custom value for default try/except added to get() to handle default string rather than node

This behaves correctly if it si replaced by `return node and node.value[1] or default` https://github.com/zedshaw/learn-more-python-the-hard-way-solutions/blob/dc3adab80bf9020cc714dd2dd763964b5a7d1865/ex17_dictionary/dictionary.py#L43

Hello Zed, I think this is a very good example of how to use composition in Python to wrap a class. However, the return functions are missing from "count" and...

Hi there, really enjoyed the FSM chapter and exercise. I have two minor bug fixes to propose for the solution to ex 30: - state functions which were meant to...