Complete the code to create a “dollars to dimes” program.  …

Complete the code to create a “dollars to dimes” program.   For example, if the function is passed in 3 for the number of dollars, it returns 30. Note: fill in the blanks only.  Do not retype the code. def dollars_to_dimes([n])    return(n [mul] [ten]) print(dollars_to_dimes(3))

Complete the code to make the function count forward from 1…

Complete the code to make the function count forward from 1 to 5 by 2s. Note: fill in the blanks only.  Do not retype the code. def count_up(count, [max]):    if count == max:                    print(‘Go!’)                      else:                                print(count)                     count_up([count1], max)                    count_up([one],5)