Create a function to play your school’s fight song using MIDI.
Note: Below is the Georgia Tech Fight Song. Specifically it is the most famous section. Many school fight songs have a large number of verses that are not required for an answer to this question.
```
def fightsong():
quarterNote = 300
intensity = 127
playNote(67, int(quarterNote), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(63, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(62, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote*2.5), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(68, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote*2.5), intensity)
playNote(70, int(quarterNote/2.0), intensity)
playNote(72, int(quarterNote), intensity)
playNote(68, int(quarterNote/2.0), intensity)
playNote(72, int(quarterNote), intensity)
playNote(68, int(quarterNote/2.0), intensity)
playNote(72, int(quarterNote/2.0), intensity)
playNote(75, int(quarterNote*2.0), intensity)
playNote(72, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote), intensity)
playNote(72, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(70, int(quarterNote*1.5), intensity)
playNote(67, int(quarterNote), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(63, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(67, int(quarterNote/2.0), intensity)
playNote(65, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote), intensity)
playNote(62, int(quarterNote/2.0), intensity)
playNote(63, int(quarterNote*2), intensity)
```
You might also like to view...
Method_______ returns a string representing the data received and the address of the socket sending the data.
a) recv. b) receive. c) recvfrom. d) None of the above.
Describe an incident response.
What will be an ideal response?