code icon indicating copy to clipboard operation
code copied to clipboard

Chapter programs/snippets and Solutions to Challenges

Results 4 code issues
Sort by recently updated
recently updated
newest added

Hi, In your example code/chapter3/solutions/percentile_score.py you have following code: ```python if percentile == 0: return data[0] elif percentile == 100: return data[-1] ``` so for percentile == 0 it will...

Fixed the issue in /chapter3/solutions/percentile_score.py with the lower and higher margins; returns the first and the last elements now.

Improve the suggested fraction calculator to also accept symbols and return an error message when an invalid operation is specified.