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

Computer Science & Information Technology

You might also like to view...

Which sentence is correct for general writing??

A. ?Her address is 264 Elm Street, San Antonio, TX 78212 B. ?Her address is 264 Elm St., San Antonio, TX 78212

Computer Science & Information Technology

Which of the following results from the nmap command would let an administrator know that they have an insecure service running on a Linux server?

A. 22/tcp    open    ssh B. 23/tcp    open    telnet C. 443/tcp    open    https D. 993/tcp    open    imaps

Computer Science & Information Technology

The Apple Health application is a Web 3.0 application.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which social media platform was designed for creative self-expression and allows users to blog or talk about different issues and topics that they find relevant to themselves?

A. Tumblr B. Instagram C. Facebook D. Twitter

Computer Science & Information Technology