import matplotlib.pyplot as plt
##
#tension en volt
U =  [0, 2.27, 4.2, 6.3, 9.3, 11.8, 21, 30]
#intensité en mA
I = [0, 31, 47, 59, 69, 75, 90, 101]

plt.figure()
plt.plot(U, I, 'rs', ms = 16)
plt.xlabel('U (V)', fontsize = 24)
plt.ylabel('I (mA)', fontsize = 24)
plt.grid()
plt.show()
