tab = [9, 2, 1, 4, 3]
print(tab[1])
4
:
dic = {"a":9, "b":2, "c":1, "d":4, "e":3}
print(dic .... )
def mystere(tab):
res = tab[0]
for v in tab:
if v < res:
res = v
return res
mystere([5,3,8,9,2,4,1,5])