SyntaxFix
Write A Post
Hire A Developer
Questions
In playSound(), instead of
playSound()
for i in range(myList):
try
for i in myList:
This will iterate over the contents of myList, which I believe is what you want. range(myList) doesn't make any sense.
myList
range(myList)