Exerises Answer the questions or complete the tasks outlined in bold below, use the specific method described if applicable. ** Split this string:** s = "Hi there Sam!" **into a list. ** In [4]: s = "Hi there Sam!" split_list = s . split () print ( split_list ) In [2]: [ 'Hi' , 'there' , 'Sam!' ] Out[2]: ['Hi', 'there', 'Sam!'] ** Given the variables:** planet = "Earth" diameter = 12742 ** Use .format() to print the following string: ** The diameter of Earth is 12742 kilometers. In [6]: planet = "Earth" diameter = 12742 In [7]: planet = "Earth" diameter = 12742 output_string = "The diameter of {} is {} kilometers." . format ( planet , diameter ) print ( output_string ) The diameter of Earth is 12742 kilometers. ** Given this nested list, use indexing to grab the word "hello" ** In [7]: lst = [ 1 , 2 ,[ 3 , 4 ],[ 5 ,[ 100 , 200 ,[ 'h...