#This is as close to the first few notes of Megalovania (composed by Toby Fox) #as I could do using EdPy. EdPy will not allow going above high C so the 3rd note #(high D) is a tad lower. I am also NOT a music person; I learned barely enough #music sheet reading as I needed to accomplish what you see below, and I stopped #there (I will learn more later when I learn to play the piano). #Use LOWERCASE r for rests. #-------------Setup---------------- import Ed Ed.EdisonVersion = Ed.V2 Ed.DistanceUnits = Ed.CM Ed.Tempo = 1000 #--------Your code below----------- loopcounter = 0 song5 = Ed.TuneString(29, "d6d8o8a8r6G6r6g6r6f6f6d6f6g6z") #works using lowercase r! while loopcounter != 4: Ed.PlayTune(song5) while Ed.ReadMusicEnd() == Ed.MUSIC_NOT_FINISHED: pass loopcounter = loopcounter + 1