blob: ce8d4d4cb80bb17679bdde19e7ad4acefb95ff07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
ORCHESTRA = {
"violin": "strings",
"oboe": "woodwind",
"tuba": "brass",
"gong": "percussion",
}
for instrument in ORCHESTRA: # [consider-using-dict-items]
print(f"{instrument}: {ORCHESTRA[instrument]}")
|