We are going to learn:
elif statements.
if statements.
Download the Medialib ex5 code files and 7 image files (as shown below) from the gallery and complete the program in ex5.py.

Create a program with MediaLib to realise a simple dice game by modifying the code from the previous exercise for drawing a dice face:
Hints:
randint(a,b) from the random module which will return an integer in the range [a,b].draw_dice_face(n) created in the previous exercise to, for example, draw_dice_face(n, side). draw_medal(place, side) for drawing one of the medals.