LUULUUICHI Opel 15 EarSketch Asg. 4.3 If, Elif, and Else Statements Alter the code below by adding conditional statements. If the user input is "Calm", it should add only the calm sound clip. If the user input is "Intense", it should add only the two intense sound clips. If the user input is anything else, it should add only the other sound clip. The answer should contain exactly one if, one elif, and one else. PYTHON 1 from earsketch import * 3 4 init() setTempo (135) 6 mood = input("Input Mood (Calm or Intense)") 8 9 # Calm Sound insertMedia(RD CINEMATIC SCORE_HARP_3,1,1) TO 11 12 13 # Intense Sounds insertMedia(RD_CINEMATIC_SCORE_STRINGS_1.2.1) insertMedia(RD_CINEMATIC_SCORE_MAINDRUM_7.3.1) 15 16 # Other Sound insertMedia(HOUSE_SEX_WHOOSH 001,4,1) 17 18 finish Edit in Farsketch Introduction to Programm Intro to Progx Homepage - Intro to Program atechedu/itec2120/bookhtme boolean operators EarSketch Asg. 4.4 a rketch While Statements Alter the code below to use a while loop rather than repeated code to play the clips 5 times in a row. from earsketch import 4 init() setTempo(88) 7 8 start 1 clip - YG WEST COAST HIP_HOPPIANO_HIGH_1 length - dur (clip) 12 10 Change this section insertMedia(YG WEST COAST HIP_HOP_PIANO_HIGH_1.1.start) insert Media(YG WEST COAST HIP HOP CLAP SNARE 1.2.start) insertMedia(YG WEST COAST_HIP_HOP_KICK_1.3. start) insertMedia(YG WEST COAST HIP HOP HIHAT_3.4.start) start length 16 insertMedia (YG_WEST COAST_HIP_HOP PIANO_HIGH_1.1. start) 12 insertMedia(YG WEST COAST_MIP HOP_CLAP_SNARE 1.2.start) 18 insertMedia(YG WEST COAST HIP HOP_KICK_1.3, start) 19 insertMedia(YG_WEST COAST HIP_HOP_HTHAT 3.4. start) 20 start +- length 21 insertMedia(YG WEST COAST HIP HOP PIANO_HIGH_1.1. start) 22 insertMedia(YG_WEST COAST HIP HOP_CLAP SNARE 1.2.start) 23 insertMedia(YG WEST COAST HIP HOP KICK_1.3, start) 24 insertMedia(YG WEST COAST HIP HOP HIHAT_3.4. start) 25 start length 26 insertMedia(YG WEST COAST HIP HOP PIANO_HIGH 1.1. start) 1 DALL