QCM C1
This commit is contained in:
parent
3ad9ff1140
commit
eb3c7313c5
199 changed files with 10833 additions and 0 deletions
9
C2/codes/q100_86.py
Normal file
9
C2/codes/q100_86.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
def maxi(t):
|
||||
m = t[0]
|
||||
for x in t:
|
||||
if x[1] >= m[1]:
|
||||
m = x
|
||||
return m
|
||||
|
||||
L = [('Alice', 17), ('Barnabé', 17),('Casimir', 17),
|
||||
('Doriane', 17),('Emilien', 14), ('Fabienne', 16)]
|
||||
Loading…
Add table
Add a link
Reference in a new issue