5 lines
No EOL
134 B
Python
5 lines
No EOL
134 B
Python
placard = { 'chemise': 3, 'pantalon': 6, 'tee shirt': 7 }
|
|
placard['chaussette'] = 4
|
|
placard['chemise'] = 5
|
|
|
|
L = list(placard.values()) |