blob: f719b1a52565b16faeca8e327452a9008a779a1c (
plain)
1
2
3
4
5
6
7
8
9
10
|
ORCHESTRA = {
"violin": "strings",
"oboe": "woodwind",
"tuba": "brass",
"gong": "percussion",
}
for instrument, section in ORCHESTRA.items():
print(f"{instrument}: {section}")
|