code
code copied to clipboard
Chapter programs/snippets and Solutions to Challenges
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.
https://streamlit.io
Improve the suggested fraction calculator to also accept symbols and return an error message when an invalid operation is specified.