# Write a function, using a for loop, # that takes a list of what-to-do. # # Use the given what-to-do and print the # "If you're happy and you know it" song # (https://www.youtube.com/watch?v=Im5i7EqZE1A) # # If you're happy and you know it, clap your hands! # If you're happy and you know it, clap your hands! # If you're happy and you know it, and you really want to show it; # If you're happy and you know it, clap your hands! def happy(to_dos): what_to_dos = ["clap your hands", "say 'Hooray'", "snap your fingers"] happy(what_to_dos) # What is we want to rewrite the function, using a while loop? # How should we modify our code?