Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import statistics scores = [85, 92, 78, 90, 88] print(f'Mean score: {statistics.mean(scores)}') print(f'Median score: {statistics.median(scores)}')
Mean score: 86.6
Median score: 88