The initial program allows a user to enter a list of numbers (press 'd' when done). It also sorts the list from least to greatest so you don't have to. Your job is to create the code for each of the 'More Blocks' so that the mean, median, and range are calculated. You do not need to calculate the mode, but if you do, you can earn an extra T$ since it is very difficult to do! Good luck!
Sample data: [13, 18, 13, 14, 13, 16, 14, 21, 13] mean: 15 median: 14 mode: 13 range: 8 Sample data 2: [1, 2, 4, 7] mean: 3.5 median: 3 mode: none range: 6