ConvertQCM/C3/codes/q19_16.py
2025-08-26 18:58:56 +02:00

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())