Question: Rewrite Program 100 (page 236) so that two input values are provided to the function: the sound and a percentage of how far into the

Rewrite Program 100 (page 236) so that two input values are provided to the function: the sound and a percentage of how far into the sound to go before changing from increasing to decreasing the volume.


Data from Program 100

def increaseAndDecrease (sound) : for sampleIndex in range (0,getLength (sound)/2): value = getSampleValueAt (sound, sampleIndex) setSampleValueAt(sound, sampleIndex,value * 2) for sampleIndex in range (getLength(sound)/2, getLength(sound)): value = getSampleValueAt (sound, sampleIndex) setSampleValueAt (sound, sampleIndex, value * 0.2)

def increaseAndDecrease (sound) : for sampleIndex in range (0,getLength (sound)/2): value = getSampleValueAt (sound, sampleIndex) setSampleValueAt(sound, sampleIndex,value * 2) for sampleIndex in range (getLength(sound)/2, getLength(sound)): value = getSampleValueAt (sound, sampleIndex) setSampleValueAt (sound, sampleIndex, value * 0.2)

Step by Step Solution

3.37 Rating (166 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

def increase AndDecrease2sound percentage for sampleIndex in rang... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Introduction to Computing and Programming in Pytho Questions!